UNPKG

parseit.js

Version:

Customizable parsing library for converting a list of tokens into an AST tree

11 lines 271 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class ASTNode { isNode = true; static isNodeConstructor = true; toString() { return "[ParseitASTNode]"; } } exports.default = ASTNode; //# sourceMappingURL=ASTNode.js.map