Lines Matching refs:existingNode

31350         var existingNode = node.getValue() || null;
31351 while (existingNode && existingNode.hasChildren()) {
31352 existingNode = existingNode.findChildAtOffset(this.offset, false);
31359 range: _this.getCompletionRange(existingNode)
31369 this.getColorProposals(entry, existingNode, result);
31372 this.getPositionProposals(entry, existingNode, result);
31375 this.getRepeatStyleProposals(entry, existingNode, result);
31378 this.getLineStyleProposals(entry, existingNode, result);
31381 this.getLineWidthProposals(entry, existingNode, result);
31384 this.getGeometryBoxProposals(entry, existingNode, result);
31387 this.getBoxProposals(entry, existingNode, result);
31390 this.getImageProposals(entry, existingNode, result);
31393 this.getTimingFunctionProposals(entry, existingNode, result);
31396 this.getBasicShapeProposals(entry, existingNode, result);
31401 this.getValueEnumProposals(entry, existingNode, result);
31402 this.getCSSWideKeywordProposals(entry, existingNode, result);
31403 this.getUnitProposals(entry, existingNode, result);
31411 …BPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), existingValue…
31416 this.getVariableProposals(existingNode, result);
31417 this.getTermProposals(entry, existingNode, result);
31420 CSSCompletion.prototype.getValueEnumProposals = function (entry, existingNode, result) { argument
31441 …BPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), insertString),
31451 CSSCompletion.prototype.getCSSWideKeywordProposals = function (entry, existingNode, result) { argument
31456 …__WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), keywords),
31468 CSSCompletion.prototype.getVariableProposals = function (existingNode, result) { argument
31476 …WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), insertText),
31513 CSSCompletion.prototype.getUnitProposals = function (entry, existingNode, result) { argument
31525 …if (existingNode && existingNode.parent && existingNode.parent.type === _parser_cssNodes_js__WEBPA…
31526 existingNode = existingNode.getParent(); // include the unary operator
31538 …WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), insertText),
31547 CSSCompletion.prototype.getCompletionRange = function (existingNode) { argument
31548 if (existingNode && existingNode.offset <= this.offset && this.offset <= existingNode.end) {
31549 …var end = existingNode.end !== -1 ? this.textDocument.positionAt(existingNode.end) : this.position;
31550 var start = this.textDocument.positionAt(existingNode.offset);
31557 CSSCompletion.prototype.getColorProposals = function (entry, existingNode, result) { argument
31562 …_js__WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), color),
31570 …_js__WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), color),
31580 …_js__WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), color),
31592 …BPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this_1.getCompletionRange(existingNode), insertText),
31604 CSSCompletion.prototype.getPositionProposals = function (entry, existingNode, result) { argument
31609 …__WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), position),
31615 CSSCompletion.prototype.getRepeatStyleProposals = function (entry, existingNode, result) { argument
31620 …js__WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), repeat),
31626 CSSCompletion.prototype.getLineStyleProposals = function (entry, existingNode, result) { argument
31631 …_WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), lineStyle),
31637 CSSCompletion.prototype.getLineWidthProposals = function (entry, existingNode, result) { argument
31642 …_WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), lineWidth),
31648 CSSCompletion.prototype.getGeometryBoxProposals = function (entry, existingNode, result) { argument
31653 …es_js__WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), box),
31659 CSSCompletion.prototype.getBoxProposals = function (entry, existingNode, result) { argument
31664 …es_js__WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), box),
31670 CSSCompletion.prototype.getImageProposals = function (entry, existingNode, result) { argument
31676 …WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), insertText),
31683 CSSCompletion.prototype.getTimingFunctionProposals = function (entry, existingNode, result) { argument
31689 …WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), insertText),
31696 CSSCompletion.prototype.getBasicShapeProposals = function (entry, existingNode, result) { argument
31702 …WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), insertText),
31750 …var existingNode = this.findInNodePath(_parser_cssNodes_js__WEBPACK_IMPORTED_MODULE_0__["NodeType"…
31751 …if (!existingNode && this.offset - this.currentWord.length > 0 && this.textDocument.getText()[this…
31761 …EBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(_this.getCompletionRange(existingNode), insertText),
31777 …EBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(_this.getCompletionRange(existingNode), insertText),
31793 …_js__WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), entry),
31801 …_js__WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), entry),
31816 …_WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(_this.getCompletionRange(existingNode), selector),
31931 CSSCompletion.prototype.getTermProposals = function (entry, existingNode, result) { argument
31936 …ems.push(this.makeTermProposal(functionSymbol, functionSymbol.node.getParameters(), existingNode));
31941 CSSCompletion.prototype.makeTermProposal = function (symbol, parameters, existingNode) { argument
31950 …WEBPACK_IMPORTED_MODULE_4__["TextEdit"].replace(this.getCompletionRange(existingNode), insertText),
31988 …CSSCompletion.prototype.getCompletionsForExtendsReference = function (extendsRef, existingNode, re… argument
33127 …LESSCompletion.prototype.createFunctionProposals = function (proposals, existingNode, sortToEnd, r… argument
33134 …BPACK_IMPORTED_MODULE_1__["TextEdit"].replace(this.getCompletionRange(existingNode), p.name + '($0…
33145 LESSCompletion.prototype.getTermProposals = function (entry, existingNode, result) { argument
33150 this.createFunctionProposals(functions, existingNode, true, result);
33151 return _super.prototype.getTermProposals.call(this, entry, existingNode, result); argument
33153 LESSCompletion.prototype.getColorProposals = function (entry, existingNode, result) { argument
33154 this.createFunctionProposals(LESSCompletion.colorProposals, existingNode, false, result);
33155 return _super.prototype.getColorProposals.call(this, entry, existingNode, result); argument
34707 …SCSSCompletion.prototype.createFunctionProposals = function (proposals, existingNode, sortToEnd, r… argument
34716 …WEBPACK_IMPORTED_MODULE_2__["TextEdit"].replace(this.getCompletionRange(existingNode), insertText),
34731 SCSSCompletion.prototype.getTermProposals = function (entry, existingNode, result) { argument
34736 this.createFunctionProposals(functions, existingNode, true, result);
34737 return _super.prototype.getTermProposals.call(this, entry, existingNode, result); argument
34739 SCSSCompletion.prototype.getColorProposals = function (entry, existingNode, result) { argument
34740 this.createFunctionProposals(SCSSCompletion.colorProposals, existingNode, false, result);
34741 return _super.prototype.getColorProposals.call(this, entry, existingNode, result); argument
34748 …letion.prototype.getCompletionsForExtendsReference = function (_extendsRef, existingNode, result) { argument
34754 …EBPACK_IMPORTED_MODULE_2__["TextEdit"].replace(this.getCompletionRange(existingNode), symbol.name),