freemarker-parser
Version:
Freemarker Parser is a javascript implementation of the Freemarker
15 lines • 574 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.NodeType = void 0;
var NodeType;
(function (NodeType) {
NodeType["Program"] = "Program";
NodeType["OpenDirective"] = "OpenDirective";
NodeType["CloseDirective"] = "CloseDirective";
NodeType["OpenMacro"] = "OpenMacro";
NodeType["CloseMacro"] = "CloseMacro";
NodeType["Text"] = "Text";
NodeType["Interpolation"] = "Interpolation";
NodeType["Comment"] = "Comment";
})(NodeType = exports.NodeType || (exports.NodeType = {}));
//# sourceMappingURL=Symbols.js.map