Lines Matching refs:textDocument

515     function create(textDocument, edits) {
516 return { textDocument: textDocument, edits: edits };
522 && VersionedTextDocumentIdentifier.is(candidate.textDocument)
645 _this._textEditChanges[change.textDocument.uri] = textEditChange;
681 var textDocument = key;
682 var result = this._textEditChanges[textDocument.uri];
686 textDocument: textDocument, property in WorkspaceChange.getTextEditChange.textDocumentEdit
691 this._textEditChanges[textDocument.uri] = result;
1982 textDocument: { class in ClientCapabilities.LATEST
26854 Parser.prototype.parseStylesheet = function (textDocument) { argument
26855 var versionId = textDocument.version;
26856 var text = textDocument.getText();
26858 if (textDocument.version !== versionId) {
31135 this.textDocument = document;
31228 this.textDocument = null;
31285 … if (completePropertyWithSemicolon && _this.offset >= _this.textDocument.offsetAt(range.end)) {
31549 …var end = existingNode.end !== -1 ? this.textDocument.positionAt(existingNode.end) : this.position;
31550 var start = this.textDocument.positionAt(existingNode.offset);
31751 …if (!existingNode && this.offset - this.currentWord.length > 0 && this.textDocument.getText()[this…
31808 var docText = this.textDocument.getText();
31999 … var emptyURIValuePosition = this.textDocument.positionAt(uriLiteralNode.offset + 'url('.length);
32039 …mentationFormat = (_c = (_b = (_a = this.lsOptions.clientCapabilities.textDocument) === null || _a…
32510 … var hover = this.clientCapabilities.textDocument && this.clientCapabilities.textDocument.hover;