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.Path = void 0; var _base = require("../base.cjs"); class Path extends _base.BaseNodeString { type = "Path"; constructor(ctx, visitor) { super(ctx, visitor); this.name = (0, _base.formatString)(ctx.NonEmptyStringLiteral().getText()); } } exports.Path = Path;