UNPKG

woltlab-compiler

Version:

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

26 lines 917 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const UserOptionFileCompiler_1 = require("../../Options/UserOptionFileCompiler"); const OptionInstructionCompiler_1 = require("./OptionInstructionCompiler"); /** * Provides the functionality to compile `UserOptionInstruction`s. */ class UserOptionInstructionCompiler extends OptionInstructionCompiler_1.OptionInstructionCompiler { /** * Initializes a new instance of the `UserOptionInstructionCompiler` class. * * @param item * The item to compile. */ constructor(item) { super(item); } /** * @inheritdoc */ get OptionFileCompiler() { return new UserOptionFileCompiler_1.UserOptionFileCompiler(this.Item); } } exports.UserOptionInstructionCompiler = UserOptionInstructionCompiler; //# sourceMappingURL=UserOptionInstructionCompiler.js.map