UNPKG

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