Skip to content

Commit ebc8fce

Browse files
committed
Merge branch 'master' into jsx-element-realtypes
2 parents c844c1b + 4ee0084 commit ebc8fce

File tree

241 files changed

+7220
-914
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

241 files changed

+7220
-914
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
[![Join the chat at https://gitter.im/Microsoft/TypeScript](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/Microsoft/TypeScript?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
99

10-
[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescriptlang).
10+
[TypeScript](https://www.typescriptlang.org/) is a language for application-scale JavaScript. TypeScript adds optional types to JavaScript that support tools for large-scale JavaScript applications for any browser, for any host, on any OS. TypeScript compiles to readable, standards-based JavaScript. Try it out at the [playground](https://www.typescriptlang.org/play/), and stay up to date via [our blog](https://blogs.msdn.microsoft.com/typescript) and [Twitter account](https://twitter.com/typescript).
1111

1212
## Installing
1313

src/compiler/checker.ts

+447-148
Large diffs are not rendered by default.

src/compiler/commandLineParser.ts

+77-42
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ namespace ts {
4545
["es2018.promise", "lib.es2018.promise.d.ts"],
4646
["es2018.regexp", "lib.es2018.regexp.d.ts"],
4747
["es2019.array", "lib.es2019.array.d.ts"],
48+
["es2019.object", "lib.es2019.object.d.ts"],
4849
["es2019.string", "lib.es2019.string.d.ts"],
4950
["es2019.symbol", "lib.es2019.symbol.d.ts"],
5051
["es2020.string", "lib.es2020.string.d.ts"],
@@ -1346,7 +1347,12 @@ namespace ts {
13461347
/**
13471348
* Reads the config file, reports errors if any and exits if the config file cannot be found
13481349
*/
1349-
export function getParsedCommandLineOfConfigFile(configFileName: string, optionsToExtend: CompilerOptions, host: ParseConfigFileHost): ParsedCommandLine | undefined {
1350+
export function getParsedCommandLineOfConfigFile(
1351+
configFileName: string,
1352+
optionsToExtend: CompilerOptions,
1353+
host: ParseConfigFileHost,
1354+
extendedConfigCache?: Map<ExtendedConfigCacheEntry>
1355+
): ParsedCommandLine | undefined {
13501356
let configFileText: string | undefined;
13511357
try {
13521358
configFileText = host.readFile(configFileName);
@@ -1367,7 +1373,16 @@ namespace ts {
13671373
result.path = toPath(configFileName, cwd, createGetCanonicalFileName(host.useCaseSensitiveFileNames));
13681374
result.resolvedPath = result.path;
13691375
result.originalFileName = result.fileName;
1370-
return parseJsonSourceFileConfigFileContent(result, host, getNormalizedAbsolutePath(getDirectoryPath(configFileName), cwd), optionsToExtend, getNormalizedAbsolutePath(configFileName, cwd));
1376+
return parseJsonSourceFileConfigFileContent(
1377+
result,
1378+
host,
1379+
getNormalizedAbsolutePath(getDirectoryPath(configFileName), cwd),
1380+
optionsToExtend,
1381+
getNormalizedAbsolutePath(configFileName, cwd),
1382+
/*resolutionStack*/ undefined,
1383+
/*extraFileExtension*/ undefined,
1384+
extendedConfigCache
1385+
);
13711386
}
13721387

13731388
/**
@@ -1970,8 +1985,8 @@ namespace ts {
19701985
* @param basePath A root directory to resolve relative path entries in the config
19711986
* file to. e.g. outDir
19721987
*/
1973-
export function parseJsonConfigFileContent(json: any, host: ParseConfigHost, basePath: string, existingOptions?: CompilerOptions, configFileName?: string, resolutionStack?: Path[], extraFileExtensions?: ReadonlyArray<FileExtensionInfo>): ParsedCommandLine {
1974-
return parseJsonConfigFileContentWorker(json, /*sourceFile*/ undefined, host, basePath, existingOptions, configFileName, resolutionStack, extraFileExtensions);
1988+
export function parseJsonConfigFileContent(json: any, host: ParseConfigHost, basePath: string, existingOptions?: CompilerOptions, configFileName?: string, resolutionStack?: Path[], extraFileExtensions?: ReadonlyArray<FileExtensionInfo>, extendedConfigCache?: Map<ExtendedConfigCacheEntry>): ParsedCommandLine {
1989+
return parseJsonConfigFileContentWorker(json, /*sourceFile*/ undefined, host, basePath, existingOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache);
19751990
}
19761991

19771992
/**
@@ -1981,8 +1996,8 @@ namespace ts {
19811996
* @param basePath A root directory to resolve relative path entries in the config
19821997
* file to. e.g. outDir
19831998
*/
1984-
export function parseJsonSourceFileConfigFileContent(sourceFile: TsConfigSourceFile, host: ParseConfigHost, basePath: string, existingOptions?: CompilerOptions, configFileName?: string, resolutionStack?: Path[], extraFileExtensions?: ReadonlyArray<FileExtensionInfo>): ParsedCommandLine {
1985-
return parseJsonConfigFileContentWorker(/*json*/ undefined, sourceFile, host, basePath, existingOptions, configFileName, resolutionStack, extraFileExtensions);
1999+
export function parseJsonSourceFileConfigFileContent(sourceFile: TsConfigSourceFile, host: ParseConfigHost, basePath: string, existingOptions?: CompilerOptions, configFileName?: string, resolutionStack?: Path[], extraFileExtensions?: ReadonlyArray<FileExtensionInfo>, extendedConfigCache?: Map<ExtendedConfigCacheEntry>): ParsedCommandLine {
2000+
return parseJsonConfigFileContentWorker(/*json*/ undefined, sourceFile, host, basePath, existingOptions, configFileName, resolutionStack, extraFileExtensions, extendedConfigCache);
19862001
}
19872002

19882003
/*@internal*/
@@ -2021,11 +2036,12 @@ namespace ts {
20212036
configFileName?: string,
20222037
resolutionStack: Path[] = [],
20232038
extraFileExtensions: ReadonlyArray<FileExtensionInfo> = [],
2039+
extendedConfigCache?: Map<ExtendedConfigCacheEntry>
20242040
): ParsedCommandLine {
20252041
Debug.assert((json === undefined && sourceFile !== undefined) || (json !== undefined && sourceFile === undefined));
20262042
const errors: Diagnostic[] = [];
20272043

2028-
const parsedConfig = parseConfig(json, sourceFile, host, basePath, configFileName, resolutionStack, errors);
2044+
const parsedConfig = parseConfig(json, sourceFile, host, basePath, configFileName, resolutionStack, errors, extendedConfigCache);
20292045
const { raw } = parsedConfig;
20302046
const options = extend(existingOptions, parsedConfig.options || {});
20312047
options.configFilePath = configFileName && normalizeSlashes(configFileName);
@@ -2173,7 +2189,7 @@ namespace ts {
21732189
return existingErrors !== configParseDiagnostics.length;
21742190
}
21752191

2176-
interface ParsedTsconfig {
2192+
export interface ParsedTsconfig {
21772193
raw: any;
21782194
options?: CompilerOptions;
21792195
typeAcquisition?: TypeAcquisition;
@@ -2192,13 +2208,14 @@ namespace ts {
21922208
* It does *not* resolve the included files.
21932209
*/
21942210
function parseConfig(
2195-
json: any,
2196-
sourceFile: TsConfigSourceFile | undefined,
2197-
host: ParseConfigHost,
2198-
basePath: string,
2199-
configFileName: string | undefined,
2200-
resolutionStack: string[],
2201-
errors: Push<Diagnostic>,
2211+
json: any,
2212+
sourceFile: TsConfigSourceFile | undefined,
2213+
host: ParseConfigHost,
2214+
basePath: string,
2215+
configFileName: string | undefined,
2216+
resolutionStack: string[],
2217+
errors: Push<Diagnostic>,
2218+
extendedConfigCache?: Map<ExtendedConfigCacheEntry>
22022219
): ParsedTsconfig {
22032220
basePath = normalizeSlashes(basePath);
22042221
const resolvedPath = getNormalizedAbsolutePath(configFileName || "", basePath);
@@ -2215,7 +2232,7 @@ namespace ts {
22152232
if (ownConfig.extendedConfigPath) {
22162233
// copy the resolution stack so it is never reused between branches in potential diamond-problem scenarios.
22172234
resolutionStack = resolutionStack.concat([resolvedPath]);
2218-
const extendedConfig = getExtendedConfig(sourceFile, ownConfig.extendedConfigPath, host, basePath, resolutionStack, errors);
2235+
const extendedConfig = getExtendedConfig(sourceFile, ownConfig.extendedConfigPath, host, basePath, resolutionStack, errors, extendedConfigCache);
22192236
if (extendedConfig && isSuccessfulParsedTsconfig(extendedConfig)) {
22202237
const baseRaw = extendedConfig.raw;
22212238
const raw = ownConfig.raw;
@@ -2359,47 +2376,65 @@ namespace ts {
23592376
return undefined;
23602377
}
23612378

2379+
export interface ExtendedConfigCacheEntry {
2380+
extendedResult: TsConfigSourceFile;
2381+
extendedConfig: ParsedTsconfig | undefined;
2382+
}
2383+
23622384
function getExtendedConfig(
23632385
sourceFile: TsConfigSourceFile | undefined,
23642386
extendedConfigPath: string,
23652387
host: ParseConfigHost,
23662388
basePath: string,
23672389
resolutionStack: string[],
23682390
errors: Push<Diagnostic>,
2391+
extendedConfigCache?: Map<ExtendedConfigCacheEntry>
23692392
): ParsedTsconfig | undefined {
2370-
const extendedResult = readJsonConfigFile(extendedConfigPath, path => host.readFile(path));
2393+
const path = host.useCaseSensitiveFileNames ? extendedConfigPath : toLowerCase(extendedConfigPath);
2394+
let value: ExtendedConfigCacheEntry | undefined;
2395+
let extendedResult: TsConfigSourceFile;
2396+
let extendedConfig: ParsedTsconfig | undefined;
2397+
if (extendedConfigCache && (value = extendedConfigCache.get(path))) {
2398+
({ extendedResult, extendedConfig } = value);
2399+
}
2400+
else {
2401+
extendedResult = readJsonConfigFile(extendedConfigPath, path => host.readFile(path));
2402+
if (!extendedResult.parseDiagnostics.length) {
2403+
const extendedDirname = getDirectoryPath(extendedConfigPath);
2404+
extendedConfig = parseConfig(/*json*/ undefined, extendedResult, host, extendedDirname,
2405+
getBaseFileName(extendedConfigPath), resolutionStack, errors, extendedConfigCache);
2406+
2407+
if (isSuccessfulParsedTsconfig(extendedConfig)) {
2408+
// Update the paths to reflect base path
2409+
const relativeDifference = convertToRelativePath(extendedDirname, basePath, identity);
2410+
const updatePath = (path: string) => isRootedDiskPath(path) ? path : combinePaths(relativeDifference, path);
2411+
const mapPropertiesInRawIfNotUndefined = (propertyName: string) => {
2412+
if (raw[propertyName]) {
2413+
raw[propertyName] = map(raw[propertyName], updatePath);
2414+
}
2415+
};
2416+
2417+
const { raw } = extendedConfig;
2418+
mapPropertiesInRawIfNotUndefined("include");
2419+
mapPropertiesInRawIfNotUndefined("exclude");
2420+
mapPropertiesInRawIfNotUndefined("files");
2421+
}
2422+
}
2423+
if (extendedConfigCache) {
2424+
extendedConfigCache.set(path, { extendedResult, extendedConfig });
2425+
}
2426+
}
23712427
if (sourceFile) {
23722428
sourceFile.extendedSourceFiles = [extendedResult.fileName];
2429+
if (extendedResult.extendedSourceFiles) {
2430+
sourceFile.extendedSourceFiles.push(...extendedResult.extendedSourceFiles);
2431+
}
23732432
}
23742433
if (extendedResult.parseDiagnostics.length) {
23752434
errors.push(...extendedResult.parseDiagnostics);
23762435
return undefined;
23772436
}
2378-
2379-
const extendedDirname = getDirectoryPath(extendedConfigPath);
2380-
const extendedConfig = parseConfig(/*json*/ undefined, extendedResult, host, extendedDirname,
2381-
getBaseFileName(extendedConfigPath), resolutionStack, errors);
2382-
if (sourceFile && extendedResult.extendedSourceFiles) {
2383-
sourceFile.extendedSourceFiles!.push(...extendedResult.extendedSourceFiles);
2384-
}
2385-
2386-
if (isSuccessfulParsedTsconfig(extendedConfig)) {
2387-
// Update the paths to reflect base path
2388-
const relativeDifference = convertToRelativePath(extendedDirname, basePath, identity);
2389-
const updatePath = (path: string) => isRootedDiskPath(path) ? path : combinePaths(relativeDifference, path);
2390-
const mapPropertiesInRawIfNotUndefined = (propertyName: string) => {
2391-
if (raw[propertyName]) {
2392-
raw[propertyName] = map(raw[propertyName], updatePath);
2393-
}
2394-
};
2395-
2396-
const { raw } = extendedConfig;
2397-
mapPropertiesInRawIfNotUndefined("include");
2398-
mapPropertiesInRawIfNotUndefined("exclude");
2399-
mapPropertiesInRawIfNotUndefined("files");
2400-
}
2401-
2402-
return extendedConfig;
2437+
return extendedConfig!;
24032438
}
24042439

24052440
function convertCompileOnSaveOptionFromJson(jsonOption: any, basePath: string, errors: Push<Diagnostic>): boolean {

src/compiler/core.ts

+27-2
Original file line numberDiff line numberDiff line change
@@ -1400,8 +1400,8 @@ namespace ts {
14001400
/** Shims `Array.from`. */
14011401
export function arrayFrom<T, U>(iterator: Iterator<T> | IterableIterator<T>, map: (t: T) => U): U[];
14021402
export function arrayFrom<T>(iterator: Iterator<T> | IterableIterator<T>): T[];
1403-
export function arrayFrom(iterator: Iterator<any> | IterableIterator<any>, map?: (t: any) => any): any[] {
1404-
const result: any[] = [];
1403+
export function arrayFrom<T, U>(iterator: Iterator<T> | IterableIterator<T>, map?: (t: T) => U): (T | U)[] {
1404+
const result: (T | U)[] = [];
14051405
for (let { value, done } = iterator.next(); !done; { value, done } = iterator.next()) {
14061406
result.push(map ? map(value) : value);
14071407
}
@@ -2284,4 +2284,29 @@ namespace ts {
22842284
}
22852285
return result;
22862286
}
2287+
2288+
export function cartesianProduct<T>(arrays: readonly T[][]) {
2289+
const result: T[][] = [];
2290+
cartesianProductWorker(arrays, result, /*outer*/ undefined, 0);
2291+
return result;
2292+
}
2293+
2294+
function cartesianProductWorker<T>(arrays: readonly (readonly T[])[], result: (readonly T[])[], outer: readonly T[] | undefined, index: number) {
2295+
for (const element of arrays[index]) {
2296+
let inner: T[];
2297+
if (outer) {
2298+
inner = outer.slice();
2299+
inner.push(element);
2300+
}
2301+
else {
2302+
inner = [element];
2303+
}
2304+
if (index === arrays.length - 1) {
2305+
result.push(inner);
2306+
}
2307+
else {
2308+
cartesianProductWorker(arrays, result, inner, index + 1);
2309+
}
2310+
}
2311+
}
22872312
}

src/compiler/diagnosticMessages.json

+21-2
Original file line numberDiff line numberDiff line change
@@ -1035,6 +1035,10 @@
10351035
"category": "Error",
10361036
"code": 1355
10371037
},
1038+
"Did you mean to mark this function as 'async'?": {
1039+
"category": "Error",
1040+
"code": 1356
1041+
},
10381042

10391043
"Duplicate identifier '{0}'.": {
10401044
"category": "Error",
@@ -2959,7 +2963,7 @@
29592963
"category": "Error",
29602964
"code": 4104
29612965
},
2962-
2966+
29632967
"The current host does not support the '{0}' option.": {
29642968
"category": "Error",
29652969
"code": 5001
@@ -3096,6 +3100,10 @@
30963100
"category": "Error",
30973101
"code": 5074
30983102
},
3103+
"'{0}' is assignable to the constraint of type '{1}', but '{1}' could be instantiated with a different subtype of constraint '{2}'.": {
3104+
"category": "Error",
3105+
"code": 5075
3106+
},
30993107

31003108
"Generates a sourcemap for each corresponding '.d.ts' file.": {
31013109
"category": "Message",
@@ -4272,7 +4280,10 @@
42724280
"category": "Error",
42734281
"code": 7051
42744282
},
4275-
4283+
"Element implicitly has an 'any' type because type '{0}' has no index signature. Did you mean to call '{1}' ?": {
4284+
"category": "Error",
4285+
"code": 7052
4286+
},
42764287
"You cannot rename this element.": {
42774288
"category": "Error",
42784289
"code": 8000
@@ -4954,5 +4965,13 @@
49544965
"No value exists in scope for the shorthand property '{0}'. Either declare one or provide an initializer." :{
49554966
"category": "Error",
49564967
"code": 18004
4968+
},
4969+
"Quoted constructors have previously been interpreted as methods, which is incorrect. In TypeScript 3.6, they will be correctly parsed as constructors. In the meantime, consider using 'constructor()' to write a constructor, or '[\"constructor\"]()' to write a method.": {
4970+
"category": "Error",
4971+
"code": 18005
4972+
},
4973+
"Classes may not have a field named 'constructor'.": {
4974+
"category": "Error",
4975+
"code": 18006
49574976
}
49584977
}

src/compiler/factory.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1004,10 +1004,10 @@ namespace ts {
10041004
: node;
10051005
}
10061006

1007-
export function createPropertyAccess(expression: Expression, name: string | Identifier | undefined) {
1007+
export function createPropertyAccess(expression: Expression, name: string | Identifier) {
10081008
const node = <PropertyAccessExpression>createSynthesizedNode(SyntaxKind.PropertyAccessExpression);
10091009
node.expression = parenthesizeForAccess(expression);
1010-
node.name = asName(name)!; // TODO: GH#18217
1010+
node.name = asName(name);
10111011
setEmitFlags(node, EmitFlags.NoIndentation);
10121012
return node;
10131013
}
@@ -2189,7 +2189,7 @@ namespace ts {
21892189
}
21902190

21912191
/* @internal */
2192-
export function createJSDocTypeTag(typeExpression?: JSDocTypeExpression, comment?: string): JSDocTypeTag {
2192+
export function createJSDocTypeTag(typeExpression: JSDocTypeExpression, comment?: string): JSDocTypeTag {
21932193
const tag = createJSDocTag<JSDocTypeTag>(SyntaxKind.JSDocTypeTag, "type");
21942194
tag.typeExpression = typeExpression;
21952195
tag.comment = comment;
@@ -2468,7 +2468,7 @@ namespace ts {
24682468

24692469
export function createSpreadAssignment(expression: Expression) {
24702470
const node = <SpreadAssignment>createSynthesizedNode(SyntaxKind.SpreadAssignment);
2471-
node.expression = expression !== undefined ? parenthesizeExpressionForList(expression) : undefined!; // TODO: GH#18217
2471+
node.expression = parenthesizeExpressionForList(expression);
24722472
return node;
24732473
}
24742474

0 commit comments

Comments
 (0)