Interface YulBlock

interface YulBlock {
    nativeSrc?: string;
    nodeType: "YulBlock";
    src: string;
    statements: YulStatement[];
}

Properties

nativeSrc?: string
nodeType: "YulBlock"
src: string
statements: YulStatement[]