Update LKG

This commit is contained in:
Mohamed Hegazy
2017-10-30 20:17:16 -07:00
parent 6bc04a9ab9
commit 477bdc78bb
10 changed files with 21 additions and 21 deletions
+3 -3
View File
@@ -94531,7 +94531,7 @@ var ts;
var ts;
(function (ts) {
/** The version of the language service API */
ts.servicesVersion = "0.5";
ts.servicesVersion = "0.6";
/* @internal */
var ruleProvider;
function createNode(kind, pos, end, parent) {
@@ -97393,11 +97393,11 @@ var ts;
return this.forwardJSONCall("getCompletionsAtPosition('" + fileName + "', " + position + ")", function () { return _this.languageService.getCompletionsAtPosition(fileName, position); });
};
/** Get a string based representation of a completion list entry details */
LanguageServiceShimObject.prototype.getCompletionEntryDetails = function (fileName, position, entryName, options /*Services.FormatCodeOptions*/) {
LanguageServiceShimObject.prototype.getCompletionEntryDetails = function (fileName, position, entryName, options /*Services.FormatCodeOptions*/, source) {
var _this = this;
return this.forwardJSONCall("getCompletionEntryDetails('" + fileName + "', " + position + ", '" + entryName + "')", function () {
var localOptions = JSON.parse(options);
return _this.languageService.getCompletionEntryDetails(fileName, position, entryName, localOptions);
return _this.languageService.getCompletionEntryDetails(fileName, position, entryName, localOptions, source);
});
};
LanguageServiceShimObject.prototype.getFormattingEditsForRange = function (fileName, start, end, options /*Services.FormatCodeOptions*/) {