Skip to content

Commit

Permalink
Bump version to 4.4.3 and LKG
Browse files Browse the repository at this point in the history
  • Loading branch information
typescript-bot committed Sep 10, 2021
1 parent 782c09d commit bbb31bb
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 24 deletions.
6 changes: 5 additions & 1 deletion lib/tsc.js
Expand Up @@ -69,7 +69,7 @@ var __generator = (this && this.__generator) || function (thisArg, body) {
var ts;
(function (ts) {
ts.versionMajorMinor = "4.4";
ts.version = "4.4.2";
ts.version = "4.4.3";
var NativeCollections;
(function (NativeCollections) {
function tryGetNativeMap() {
Expand Down Expand Up @@ -97526,6 +97526,10 @@ var ts;
});
parsedConfigs = undefined;
}
if (packageJsonMap) {
ts.clearMap(packageJsonMap, ts.closeFileWatcher);
packageJsonMap = undefined;
}
}
function getCurrentBuilderProgram() {
return builderProgram;
Expand Down
17 changes: 12 additions & 5 deletions lib/tsserver.js
Expand Up @@ -100,7 +100,7 @@ var ts;
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
ts.version = "4.4.2";
ts.version = "4.4.3";
/* @internal */
var Comparison;
(function (Comparison) {
Expand Down Expand Up @@ -118027,6 +118027,10 @@ var ts;
});
parsedConfigs = undefined;
}
if (packageJsonMap) {
ts.clearMap(packageJsonMap, ts.closeFileWatcher);
packageJsonMap = undefined;
}
}
function getCurrentBuilderProgram() {
return builderProgram;
Expand Down Expand Up @@ -126702,13 +126706,16 @@ var ts;
case 204 /* PropertyAccessExpression */:
propertyAccessToConvert = parent;
node = propertyAccessToConvert.expression;
if ((ts.isCallExpression(node) || ts.isFunctionLike(node)) &&
node.end === contextToken.pos &&
node.getChildCount(sourceFile) &&
ts.last(node.getChildren(sourceFile)).kind !== 21 /* CloseParenToken */) {
var leftmostAccessExpression = ts.getLeftmostAccessExpression(propertyAccessToConvert);
if (ts.nodeIsMissing(leftmostAccessExpression) ||
((ts.isCallExpression(node) || ts.isFunctionLike(node)) &&
node.end === contextToken.pos &&
node.getChildCount(sourceFile) &&
ts.last(node.getChildren(sourceFile)).kind !== 21 /* CloseParenToken */)) {
// This is likely dot from incorrectly parsed expression and user is starting to write spread
// eg: Math.min(./**/)
// const x = function (./**/) {}
// ({./**/})
return undefined;
}
break;
Expand Down
17 changes: 12 additions & 5 deletions lib/tsserverlibrary.js
Expand Up @@ -294,7 +294,7 @@ var ts;
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
ts.version = "4.4.2";
ts.version = "4.4.3";
/* @internal */
var Comparison;
(function (Comparison) {
Expand Down Expand Up @@ -118221,6 +118221,10 @@ var ts;
});
parsedConfigs = undefined;
}
if (packageJsonMap) {
ts.clearMap(packageJsonMap, ts.closeFileWatcher);
packageJsonMap = undefined;
}
}
function getCurrentBuilderProgram() {
return builderProgram;
Expand Down Expand Up @@ -127284,13 +127288,16 @@ var ts;
case 204 /* PropertyAccessExpression */:
propertyAccessToConvert = parent;
node = propertyAccessToConvert.expression;
if ((ts.isCallExpression(node) || ts.isFunctionLike(node)) &&
node.end === contextToken.pos &&
node.getChildCount(sourceFile) &&
ts.last(node.getChildren(sourceFile)).kind !== 21 /* CloseParenToken */) {
var leftmostAccessExpression = ts.getLeftmostAccessExpression(propertyAccessToConvert);
if (ts.nodeIsMissing(leftmostAccessExpression) ||
((ts.isCallExpression(node) || ts.isFunctionLike(node)) &&
node.end === contextToken.pos &&
node.getChildCount(sourceFile) &&
ts.last(node.getChildren(sourceFile)).kind !== 21 /* CloseParenToken */)) {
// This is likely dot from incorrectly parsed expression and user is starting to write spread
// eg: Math.min(./**/)
// const x = function (./**/) {}
// ({./**/})
return undefined;
}
break;
Expand Down
17 changes: 12 additions & 5 deletions lib/typescript.js
Expand Up @@ -294,7 +294,7 @@ var ts;
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
ts.version = "4.4.2";
ts.version = "4.4.3";
/* @internal */
var Comparison;
(function (Comparison) {
Expand Down Expand Up @@ -118221,6 +118221,10 @@ var ts;
});
parsedConfigs = undefined;
}
if (packageJsonMap) {
ts.clearMap(packageJsonMap, ts.closeFileWatcher);
packageJsonMap = undefined;
}
}
function getCurrentBuilderProgram() {
return builderProgram;
Expand Down Expand Up @@ -127284,13 +127288,16 @@ var ts;
case 204 /* PropertyAccessExpression */:
propertyAccessToConvert = parent;
node = propertyAccessToConvert.expression;
if ((ts.isCallExpression(node) || ts.isFunctionLike(node)) &&
node.end === contextToken.pos &&
node.getChildCount(sourceFile) &&
ts.last(node.getChildren(sourceFile)).kind !== 21 /* CloseParenToken */) {
var leftmostAccessExpression = ts.getLeftmostAccessExpression(propertyAccessToConvert);
if (ts.nodeIsMissing(leftmostAccessExpression) ||
((ts.isCallExpression(node) || ts.isFunctionLike(node)) &&
node.end === contextToken.pos &&
node.getChildCount(sourceFile) &&
ts.last(node.getChildren(sourceFile)).kind !== 21 /* CloseParenToken */)) {
// This is likely dot from incorrectly parsed expression and user is starting to write spread
// eg: Math.min(./**/)
// const x = function (./**/) {}
// ({./**/})
return undefined;
}
break;
Expand Down
17 changes: 12 additions & 5 deletions lib/typescriptServices.js
Expand Up @@ -294,7 +294,7 @@ var ts;
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
ts.version = "4.4.2";
ts.version = "4.4.3";
/* @internal */
var Comparison;
(function (Comparison) {
Expand Down Expand Up @@ -118221,6 +118221,10 @@ var ts;
});
parsedConfigs = undefined;
}
if (packageJsonMap) {
ts.clearMap(packageJsonMap, ts.closeFileWatcher);
packageJsonMap = undefined;
}
}
function getCurrentBuilderProgram() {
return builderProgram;
Expand Down Expand Up @@ -127284,13 +127288,16 @@ var ts;
case 204 /* PropertyAccessExpression */:
propertyAccessToConvert = parent;
node = propertyAccessToConvert.expression;
if ((ts.isCallExpression(node) || ts.isFunctionLike(node)) &&
node.end === contextToken.pos &&
node.getChildCount(sourceFile) &&
ts.last(node.getChildren(sourceFile)).kind !== 21 /* CloseParenToken */) {
var leftmostAccessExpression = ts.getLeftmostAccessExpression(propertyAccessToConvert);
if (ts.nodeIsMissing(leftmostAccessExpression) ||
((ts.isCallExpression(node) || ts.isFunctionLike(node)) &&
node.end === contextToken.pos &&
node.getChildCount(sourceFile) &&
ts.last(node.getChildren(sourceFile)).kind !== 21 /* CloseParenToken */)) {
// This is likely dot from incorrectly parsed expression and user is starting to write spread
// eg: Math.min(./**/)
// const x = function (./**/) {}
// ({./**/})
return undefined;
}
break;
Expand Down
6 changes: 5 additions & 1 deletion lib/typingsInstaller.js
Expand Up @@ -89,7 +89,7 @@ var ts;
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
ts.version = "4.4.2";
ts.version = "4.4.3";
/* @internal */
var Comparison;
(function (Comparison) {
Expand Down Expand Up @@ -118016,6 +118016,10 @@ var ts;
});
parsedConfigs = undefined;
}
if (packageJsonMap) {
ts.clearMap(packageJsonMap, ts.closeFileWatcher);
packageJsonMap = undefined;
}
}
function getCurrentBuilderProgram() {
return builderProgram;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -2,7 +2,7 @@
"name": "typescript",
"author": "Microsoft Corp.",
"homepage": "https://www.typescriptlang.org/",
"version": "4.4.2",
"version": "4.4.3",
"license": "Apache-2.0",
"description": "TypeScript is a language for application scale JavaScript development",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion src/compiler/corePublic.ts
Expand Up @@ -5,7 +5,7 @@ namespace ts {
// The following is baselined as a literal template type without intervention
/** The version of the TypeScript compiler release */
// eslint-disable-next-line @typescript-eslint/no-inferrable-types
export const version = "4.4.2" as string;
export const version = "4.4.3" as string;

/**
* Type of objects whose values are all of the same type.
Expand Down

0 comments on commit bbb31bb

Please sign in to comment.