UNPKG

solidity-antlr4

Version:

Solidity Lang Lexer and Parser by official ANTLR4 grammar

9 lines (8 loc) 279 B
import { BaseNodeList, formatString } from "../base.js"; export const AssemblyFlags = class extends BaseNodeList { type = "AssemblyFlags"; constructor(ctx, _visitor) { super([], _visitor); return ctx.AssemblyFlagString().map((x) => formatString(x.getText())); } };