Interface YulFunctionCall

interface YulFunctionCall {
    arguments: YulExpression[];
    functionName: YulIdentifier;
    nativeSrc?: string;
    nodeType: "YulFunctionCall";
    src: string;
}

Properties

arguments: YulExpression[]
functionName: YulIdentifier
nativeSrc?: string
nodeType: "YulFunctionCall"
src: string