UNPKG

ts-fusion-parser

Version:

Parser for Neos Fusion Files

14 lines (13 loc) 530 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.PrototypePathSegment = void 0; const AbstractPathSegment_1 = require("./AbstractPathSegment"); class PrototypePathSegment extends AbstractPathSegment_1.AbstractPathSegment { visit(visitor) { return visitor.visitPrototypePathSegment(this); } debugPrintInner() { console.log(`|-identifier: "${this.identifier}" <${this.position.begin, this.position.end}>`); } } exports.PrototypePathSegment = PrototypePathSegment;