monaco-languageclient
Advanced tools
Comparing version 0.7.0-next.3 to 0.7.0-next.4
@@ -9,2 +9,3 @@ import { BaseLanguageClient, MessageTransports, LanguageClientOptions } from "vscode-languageclient/lib/client"; | ||
protected createMessageTransports(encoding: string): Thenable<MessageTransports>; | ||
protected registerBuiltinFeatures(): void; | ||
} | ||
@@ -11,0 +12,0 @@ export declare namespace MonacoLanguageClient { |
@@ -11,2 +11,7 @@ "use strict"; | ||
const client_1 = require("vscode-languageclient/lib/client"); | ||
const typeDefinition_1 = require("vscode-languageclient/lib/typeDefinition"); | ||
const implementation_1 = require("vscode-languageclient/lib/implementation"); | ||
const colorProvider_1 = require("vscode-languageclient/lib/colorProvider"); | ||
const workspaceFolders_1 = require("vscode-languageclient/lib/workspaceFolders"); | ||
const foldingRange_1 = require("vscode-languageclient/lib/foldingRange"); | ||
__export(require("vscode-languageclient/lib/client")); | ||
@@ -66,4 +71,12 @@ class MonacoLanguageClient extends client_1.BaseLanguageClient { | ||
} | ||
registerBuiltinFeatures() { | ||
super.registerBuiltinFeatures(); | ||
this.registerFeature(new typeDefinition_1.TypeDefinitionFeature(this)); | ||
this.registerFeature(new implementation_1.ImplementationFeature(this)); | ||
this.registerFeature(new colorProvider_1.ColorProviderFeature(this)); | ||
this.registerFeature(new workspaceFolders_1.WorkspaceFoldersFeature(this)); | ||
this.registerFeature(new foldingRange_1.FoldingRangeFeature(this)); | ||
} | ||
} | ||
exports.MonacoLanguageClient = MonacoLanguageClient; | ||
//# sourceMappingURL=monaco-language-client.js.map |
{ | ||
"name": "monaco-languageclient", | ||
"version": "0.7.0-next.3", | ||
"version": "0.7.0-next.4", | ||
"description": "Monaco Language client implementation", | ||
@@ -29,3 +29,3 @@ "author": "TypeFox GmbH (http://www.typefox.io)", | ||
"vscode-jsonrpc": "^3.6.2", | ||
"vscode-languageclient": "4.3.0", | ||
"vscode-languageclient": "4.4.0", | ||
"vscode-uri": "^1.0.5" | ||
@@ -32,0 +32,0 @@ }, |
@@ -6,4 +6,9 @@ /* -------------------------------------------------------------------------------------------- | ||
import { | ||
BaseLanguageClient, MessageTransports, LanguageClientOptions, CompletionParams, WillSaveTextDocumentParams | ||
BaseLanguageClient, MessageTransports, LanguageClientOptions, CompletionParams, WillSaveTextDocumentParams, | ||
} from "vscode-languageclient/lib/client"; | ||
import { TypeDefinitionFeature } from "vscode-languageclient/lib/typeDefinition"; | ||
import { ImplementationFeature } from "vscode-languageclient/lib/implementation"; | ||
import { ColorProviderFeature } from "vscode-languageclient/lib/colorProvider"; | ||
import { WorkspaceFoldersFeature } from "vscode-languageclient/lib/workspaceFolders"; | ||
import { FoldingRangeFeature } from "vscode-languageclient/lib/foldingRange"; | ||
import * as p2c from 'vscode-languageclient/lib/protocolConverter'; | ||
@@ -78,2 +83,11 @@ import * as c2p from 'vscode-languageclient/lib/codeConverter'; | ||
protected registerBuiltinFeatures(): void { | ||
super.registerBuiltinFeatures(); | ||
this.registerFeature(new TypeDefinitionFeature(this)); | ||
this.registerFeature(new ImplementationFeature(this)); | ||
this.registerFeature(new ColorProviderFeature(this)); | ||
this.registerFeature(new WorkspaceFoldersFeature(this)); | ||
this.registerFeature(new FoldingRangeFeature(this)); | ||
} | ||
} | ||
@@ -80,0 +94,0 @@ export namespace MonacoLanguageClient { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
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
372068
5301
+ Addedvscode-languageclient@4.4.0(transitive)
- Removedvscode-languageclient@4.3.0(transitive)
Updatedvscode-languageclient@4.4.0