dockerfile-ast
Version:
Parse a Dockerfile into an array of instructions and comments.
11 lines (10 loc) • 426 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.Stopsignal = void 0;
const instruction_1 = require("../instruction");
class Stopsignal extends instruction_1.Instruction {
constructor(document, range, dockerfile, escapeChar, instruction, instructionRange) {
super(document, range, dockerfile, escapeChar, instruction, instructionRange);
}
}
exports.Stopsignal = Stopsignal;
;