UNPKG

482 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const jsonInstruction_1 = require("../jsonInstruction");
4class Add extends jsonInstruction_1.JSONInstruction {
5 constructor(document, range, dockerfile, escapeChar, instruction, instructionRange) {
6 super(document, range, dockerfile, escapeChar, instruction, instructionRange);
7 }
8 stopSearchingForFlags(argument) {
9 return argument.indexOf("--") === -1;
10 }
11}
12exports.Add = Add;