vscode-html-languageservice
Advanced tools
Comparing version 3.0.4-next.9 to 3.0.4-next.10
@@ -23,4 +23,5 @@ import { Position, CompletionList, Hover, Range, SymbolInformation, TextEdit, DocumentHighlight, DocumentLink, FoldingRange, SelectionRange, WorkspaceEdit } from 'vscode-languageserver-types'; | ||
doRename(document: TextDocument, position: Position, newName: string, htmlDocument: HTMLDocument): WorkspaceEdit | null; | ||
findMatchingTagPosition(document: TextDocument, position: Position, htmlDocument: HTMLDocument): Position | null; | ||
} | ||
export declare function getLanguageService(options?: LanguageServiceOptions): LanguageService; | ||
export declare function newHTMLDataProvider(id: string, customData: HTMLDataV1): IHTMLDataProvider; |
@@ -14,2 +14,3 @@ /*--------------------------------------------------------------------------------------------- | ||
import { doRename } from './services/htmlRename'; | ||
import { findMatchingTagPosition } from './services/htmlMatchingTagPosition'; | ||
import { getFoldingRanges } from './services/htmlFolding'; | ||
@@ -41,3 +42,4 @@ import { getSelectionRanges } from './services/htmlSelectionRange'; | ||
doTagComplete: htmlCompletion.doTagComplete.bind(htmlCompletion), | ||
doRename: doRename | ||
doRename: doRename, | ||
findMatchingTagPosition: findMatchingTagPosition | ||
}; | ||
@@ -44,0 +46,0 @@ } |
@@ -23,4 +23,5 @@ import { Position, CompletionList, Hover, Range, SymbolInformation, TextEdit, DocumentHighlight, DocumentLink, FoldingRange, SelectionRange, WorkspaceEdit } from 'vscode-languageserver-types'; | ||
doRename(document: TextDocument, position: Position, newName: string, htmlDocument: HTMLDocument): WorkspaceEdit | null; | ||
findMatchingTagPosition(document: TextDocument, position: Position, htmlDocument: HTMLDocument): Position | null; | ||
} | ||
export declare function getLanguageService(options?: LanguageServiceOptions): LanguageService; | ||
export declare function newHTMLDataProvider(id: string, customData: HTMLDataV1): IHTMLDataProvider; |
@@ -11,3 +11,3 @@ /*--------------------------------------------------------------------------------------------- | ||
else if (typeof define === "function" && define.amd) { | ||
define(["require", "exports", "./parser/htmlScanner", "./parser/htmlParser", "./services/htmlCompletion", "./services/htmlHover", "./services/htmlFormatter", "./services/htmlLinks", "./services/htmlHighlighting", "./services/htmlSymbolsProvider", "./services/htmlRename", "./services/htmlFolding", "./services/htmlSelectionRange", "./languageFacts/builtinDataProviders", "./languageFacts/dataProvider", "./htmlLanguageTypes", "vscode-languageserver-textdocument", "vscode-languageserver-types"], factory); | ||
define(["require", "exports", "./parser/htmlScanner", "./parser/htmlParser", "./services/htmlCompletion", "./services/htmlHover", "./services/htmlFormatter", "./services/htmlLinks", "./services/htmlHighlighting", "./services/htmlSymbolsProvider", "./services/htmlRename", "./services/htmlMatchingTagPosition", "./services/htmlFolding", "./services/htmlSelectionRange", "./languageFacts/builtinDataProviders", "./languageFacts/dataProvider", "./htmlLanguageTypes", "vscode-languageserver-textdocument", "vscode-languageserver-types"], factory); | ||
} | ||
@@ -29,2 +29,3 @@ })(function (require, exports) { | ||
var htmlRename_1 = require("./services/htmlRename"); | ||
var htmlMatchingTagPosition_1 = require("./services/htmlMatchingTagPosition"); | ||
var htmlFolding_1 = require("./services/htmlFolding"); | ||
@@ -57,3 +58,4 @@ var htmlSelectionRange_1 = require("./services/htmlSelectionRange"); | ||
doTagComplete: htmlCompletion.doTagComplete.bind(htmlCompletion), | ||
doRename: htmlRename_1.doRename | ||
doRename: htmlRename_1.doRename, | ||
findMatchingTagPosition: htmlMatchingTagPosition_1.findMatchingTagPosition | ||
}; | ||
@@ -60,0 +62,0 @@ } |
{ | ||
"name": "vscode-html-languageservice", | ||
"version": "3.0.4-next.9", | ||
"version": "3.0.4-next.10", | ||
"description": "Language service for HTML", | ||
@@ -5,0 +5,0 @@ "main": "./lib/umd/htmlLanguageService.js", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1479496
72
31159