solidity-antlr4
Version:
Solidity Lang Lexer and Parser by official ANTLR4 grammar
14 lines (13 loc) • 309 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.Identifier = void 0;
var _base = require("../base.cjs");
class Identifier extends _base.BaseNodeString {
type = "Identifier";
constructor(ctx, visitor) {
super(ctx, visitor);
}
}
exports.Identifier = Identifier;