UNPKG

solidity-antlr4

Version:

Solidity Lang Lexer and Parser by official ANTLR4 grammar

15 lines (14 loc) 359 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.YulBoolean = void 0; var _base = require("../base.cjs"); class YulBoolean extends _base.BaseNodeString { type = "YulBoolean"; constructor(ctx, visitor) { super(ctx, visitor); this.name = ctx.YulTrue() ? "true" : "false"; } } exports.YulBoolean = YulBoolean;