solidity-antlr4
Version:
Solidity Lang Lexer and Parser by official ANTLR4 grammar
14 lines (13 loc) • 402 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.YulExpression = void 0;
var _base = require("../base.cjs");
const YulExpression = class extends _base.BaseNodeUnion {
// type = 'YulExpression' as const;
constructor(ctx, visitor) {
super(ctx, [ctx.yulPath(), ctx.yulFunctionCall(), ctx.yulLiteral()], visitor);
}
};
exports.YulExpression = YulExpression;