solidity-antlr4
Version:
Solidity Lang Lexer and Parser by official ANTLR4 grammar
9 lines (8 loc) • 316 B
TypeScript
import { BaseNode } from '../base';
import { MetaTypeContext, SolidityParserVisitor } from '../../antlr4';
import { TypeName } from '../type';
export declare class MetaType extends BaseNode {
type: "MetaType";
typeName: TypeName;
constructor(ctx: MetaTypeContext, visitor: SolidityParserVisitor<any>);
}