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