UNPKG

woltlab-compiler

Version:

A compiler for WoltLab-Package Archives and WoltLab-Package Components

26 lines 940 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const ACPOptionFileCompiler_1 = require("../../Options/ACPOptionFileCompiler"); const OptionInstructionCompiler_1 = require("./OptionInstructionCompiler"); /** * Provides the functionality to compile instructions which provide options for the control-panel. */ class ACPOptionInstructionCompiler extends OptionInstructionCompiler_1.OptionInstructionCompiler { /** * Initializes a new instance of the `ACPOptionInstructionCompiler` class. * * @param item * The item to compile. */ constructor(item) { super(item); } /** * @inheritdoc */ get OptionFileCompiler() { return new ACPOptionFileCompiler_1.ACPOptionFileCompiler(this.Item); } } exports.ACPOptionInstructionCompiler = ACPOptionInstructionCompiler; //# sourceMappingURL=ACPOptionInstructionCompiler.js.map