@jqassistant/ts-lce
Version:
Tool to extract language concepts from a TypeScript codebase and export them to a JSON file.
16 lines (15 loc) • 431 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.LCEDecorator = void 0;
const concept_1 = require("../concept");
class LCEDecorator extends concept_1.LCEConcept {
value;
coordinates;
static conceptId = "decorator";
constructor(value, coordinates) {
super();
this.value = value;
this.coordinates = coordinates;
}
}
exports.LCEDecorator = LCEDecorator;