solidity-antlr4
Version:
Solidity Lang Lexer and Parser by official ANTLR4 grammar
11 lines (10 loc) • 433 B
TypeScript
import { BaseNode } from '../base';
import { AssemblyStatementContext, SolidityParserVisitor } from '../../antlr4';
import { YulStatement } from '../yul';
export declare class AssemblyStatement extends BaseNode {
type: "AssemblyStatement";
flags: string[] | null;
dialect: 'evmasm' | string | null;
yulStatements: YulStatement[];
constructor(ctx: AssemblyStatementContext, visitor: SolidityParserVisitor<any>);
}