Interface YulLiteralValue

interface YulLiteralValue {
    kind: "string" | "number" | "bool";
    nativeSrc?: string;
    nodeType: "YulLiteral";
    src: string;
    type: string;
    value: string;
}

Properties

kind: "string" | "number" | "bool"
nativeSrc?: string
nodeType: "YulLiteral"
src: string
type: string
value: string