solidity-antlr4
Version:
Solidity Lang Lexer and Parser by official ANTLR4 grammar
8 lines (7 loc) • 307 B
TypeScript
import { BaseNode } from '../base';
import { BooleanLiteralContext, SolidityParserVisitor } from '../../antlr4';
export declare class BooleanLiteral extends BaseNode {
type: "BooleanLiteral";
value: boolean | null;
constructor(ctx: BooleanLiteralContext, visitor: SolidityParserVisitor<any>);
}