UNPKG

ts-fusion-parser

Version:

Parser for Neos Fusion Files

14 lines (13 loc) 421 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Comment = void 0; const AbstractNode_1 = require("./AbstractNode"); class Comment extends AbstractNode_1.AbstractNode { constructor(value, multiline, prefix, nodePosition) { super(nodePosition); this.value = value; this.multiline = multiline; this.prefix = prefix; } } exports.Comment = Comment;