Skip to content

Commit

Permalink
Update LKG
Browse files Browse the repository at this point in the history
  • Loading branch information
mhegazy committed Feb 26, 2016
1 parent 02cb9ad commit dc4cd52
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion lib/tsc.js
Original file line number Diff line number Diff line change
Expand Up @@ -19667,6 +19667,7 @@ var ts;
checkGrammarForGenerator(node);
}
if (contextualMapper === identityMapper && isContextSensitive(node)) {
checkNodeDeferred(node);
return anyFunctionType;
}
var links = getNodeLinks(node);
Expand Down Expand Up @@ -32465,7 +32466,7 @@ var ts;
ts.ioReadTime = 0;
ts.ioWriteTime = 0;
var emptyArray = [];
ts.version = "1.8.2";
ts.version = "1.8.5";
function findConfigFile(searchPath, fileExists) {
var fileName = "tsconfig.json";
while (true) {
Expand Down
3 changes: 2 additions & 1 deletion lib/tsserver.js
Original file line number Diff line number Diff line change
Expand Up @@ -20235,6 +20235,7 @@ var ts;
checkGrammarForGenerator(node);
}
if (contextualMapper === identityMapper && isContextSensitive(node)) {
checkNodeDeferred(node);
return anyFunctionType;
}
var links = getNodeLinks(node);
Expand Down Expand Up @@ -33033,7 +33034,7 @@ var ts;
ts.ioReadTime = 0;
ts.ioWriteTime = 0;
var emptyArray = [];
ts.version = "1.8.2";
ts.version = "1.8.5";
function findConfigFile(searchPath, fileExists) {
var fileName = "tsconfig.json";
while (true) {
Expand Down
3 changes: 2 additions & 1 deletion lib/typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -24302,6 +24302,7 @@ var ts;
}
// The identityMapper object is used to indicate that function expressions are wildcards
if (contextualMapper === identityMapper && isContextSensitive(node)) {
checkNodeDeferred(node);
return anyFunctionType;
}
var links = getNodeLinks(node);
Expand Down Expand Up @@ -39260,7 +39261,7 @@ var ts;
/* @internal */ ts.ioWriteTime = 0;
/** The version of the TypeScript compiler release */
var emptyArray = [];
ts.version = "1.8.2";
ts.version = "1.8.5";
function findConfigFile(searchPath, fileExists) {
var fileName = "tsconfig.json";
while (true) {
Expand Down
3 changes: 2 additions & 1 deletion lib/typescriptServices.js
Original file line number Diff line number Diff line change
Expand Up @@ -24302,6 +24302,7 @@ var ts;
}
// The identityMapper object is used to indicate that function expressions are wildcards
if (contextualMapper === identityMapper && isContextSensitive(node)) {
checkNodeDeferred(node);
return anyFunctionType;
}
var links = getNodeLinks(node);
Expand Down Expand Up @@ -39260,7 +39261,7 @@ var ts;
/* @internal */ ts.ioWriteTime = 0;
/** The version of the TypeScript compiler release */
var emptyArray = [];
ts.version = "1.8.2";
ts.version = "1.8.5";
function findConfigFile(searchPath, fileExists) {
var fileName = "tsconfig.json";
while (true) {
Expand Down

0 comments on commit dc4cd52

Please sign in to comment.