UNPKG

solidity-antlr4

Version:

Solidity Lang Lexer and Parser by official ANTLR4 grammar

8 lines (7 loc) 261 B
import { BaseNodeUnion } from "../base.js"; export const YulExpression = class extends BaseNodeUnion { // type = 'YulExpression' as const; constructor(ctx, visitor) { super(ctx, [ctx.yulPath(), ctx.yulFunctionCall(), ctx.yulLiteral()], visitor); } };