diff --git a/testTs/config.py b/testTs/config.py index 14ec255458a172911fbceae19250d417407903cc..a6066abd702fad5239478130ddbfe7359c9df0a4 100644 --- a/testTs/config.py +++ b/testTs/config.py @@ -23,27 +23,42 @@ import json TS_GIT_PATH = 'https://gitee.com/zhangrengao1/TypeScript.git' TS_TAG = "v4.3.5" +LD_LIBRARY_PATH_LIST = [ + 'out/hispark_taurus/clang_x64/ark/ark', + 'out/hispark_taurus/clang_x64/ark/ark_js_runtime', + 'out/hispark_taurus/clang_x64/thirdparty/icu', + 'prebuilts/clang/ohos/linux-x86_64/llvm/lib' +] + EXPECT_DIR = os.path.join("testTs", "expect") OUT_DIR = os.path.join("out") OUT_TEST_DIR = os.path.join("out", "testTs") OUT_RESULT_FILE = os.path.join("out", "testTs", "result.txt") TEST_DIR = os.path.join("testTs") -TS_CASES_DIR = os.path.join(".", "testTs", "test") +CASES_DIR = os.path.join(".", "testTs", "test") +TS_CASES_DIR = os.path.join(".", "testTs", "test", "testts") +JS_CASES_DIR = os.path.join(".", "testTs", "test", "testjs") SKIP_FILE_PATH = os.path.join("testTs", "skip_tests.json") IMPORT_FILE_PATH = os.path.join("testTs", "import_tests.json") CUR_FILE_DIR = os.path.dirname(__file__) CODE_ROOT = os.path.abspath(os.path.join(CUR_FILE_DIR, "../../..")) +ARK_TS2ABC_PATH = 'arkcompiler/ets_frontend/' +ARK_JS_VM = './out/hispark_taurus/clang_x64/ark/ark_js_runtime/ark_js_vm' ARK_DIR = f"{CODE_ROOT}/out/hispark_taurus/clang_x64/ark/ark" -WORK_PATH = f'{CODE_ROOT}/arkcompiler/ets_frontend' +WORK_PATH = f'{CODE_ROOT}/{ARK_TS2ABC_PATH}' DEFAULT_ARK_FRONTEND_TOOL = os.path.join(ARK_DIR, "build", "src", "index.js") +ARK_FRONTEND_TOOL_ES2ABC = os.path.join(ARK_DIR, "es2abc") -TEST_PATH = os.sep.join([".", "testTs", "test"]) -OUT_PATH = os.sep.join([".", "out", "testTs"]) +TEST_PATH = os.sep.join([".", "testTs", "test", "testts"]) +OUT_TS_PATH = os.sep.join([".", "out", "testTs", "testts"]) +OUT_JS_PATH = os.sep.join([".", "out", "testTs", "testjs"]) EXPECT_PATH = os.sep.join([".", "testTs", "expect"]) TS_EXT = ".ts" +JS_EXT = ".js" TXT_EXT = ".txt" ABC_EXT = ".abc" +EXPECT_EXT = "_expect.txt" IMPORT_TEST = "" with open(IMPORT_FILE_PATH, 'r') as f: content = f.read() diff --git a/testTs/import_tests.json b/testTs/import_tests.json index 5bd054ac6d9211b77a42df2b29c97e5d3b896320..03a4988db5206c402b1584c3269db474ed6f6c28 100644 --- a/testTs/import_tests.json +++ b/testTs/import_tests.json @@ -1,18 +1,18 @@ { "import" : [ - "./testTs/test/ambient/ambientDeclarationsPatterns/ambientDeclarationsPatterns.ts", - "./testTs/test/ambient/ambientShorthand_merging/ambientShorthand_merging.ts", - "./testTs/test/ambient/ambientShorthand_reExport/ambientShorthand_reExport.ts", - "./testTs/test/declarationEmit/typeReferenceRelatedFiles/typeReferenceRelatedFiles.ts", - "./testTs/test/externalModules/typeOnly/importDefaultNamedType/importDefaultNamedType.ts", - "./testTs/test/moduleResolution/scopedPackages/scopedPackages.ts", - "./testTs/test/moduleResolution/scopedPackagesClassic/scopedPackagesClassic.ts" + "./testTs/test/testts/ambient/ambientDeclarationsPatterns/ambientDeclarationsPatterns.ts", + "./testTs/test/testts/ambient/ambientShorthand_merging/ambientShorthand_merging.ts", + "./testTs/test/testts/ambient/ambientShorthand_reExport/ambientShorthand_reExport.ts", + "./testTs/test/testts/declarationEmit/typeReferenceRelatedFiles/typeReferenceRelatedFiles.ts", + "./testTs/test/testts/externalModules/typeOnly/importDefaultNamedType/importDefaultNamedType.ts", + "./testTs/test/testts/moduleResolution/scopedPackages/scopedPackages.ts", + "./testTs/test/testts/moduleResolution/scopedPackagesClassic/scopedPackagesClassic.ts" ], "m_parameter" : [ - "./testTs/test/internalModules/DeclarationMerging/AmbientModuleAndNonAmbientFunctionWithTheSameNameAndCommonRoot.ts", - "./testTs/test/jsdoc/constructorTagOnClassConstructor.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsThisTypes.ts", - "./testTs/test/declarationEmit/declarationEmitWorkWithInlineComments.ts", - "./testTs/test/declarationEmit/exportDefaultNamespace.ts" + "./testTs/test/testts/internalModules/DeclarationMerging/AmbientModuleAndNonAmbientFunctionWithTheSameNameAndCommonRoot.ts", + "./testTs/test/testts/jsdoc/constructorTagOnClassConstructor.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsThisTypes.ts", + "./testTs/test/testts/declarationEmit/declarationEmitWorkWithInlineComments.ts", + "./testTs/test/testts/declarationEmit/exportDefaultNamespace.ts" ] } \ No newline at end of file diff --git a/testTs/run_testTs.py b/testTs/run_testTs.py index bbc16375536234f6aa8dd6c520d90e99791c8a83..81ea15a1db6d609f71c952645b94602b4a158d48 100644 --- a/testTs/run_testTs.py +++ b/testTs/run_testTs.py @@ -40,6 +40,7 @@ def parse_args(): parser.add_argument('--file', metavar='FILE', help="File to test") parser.add_argument( '--ark_frontend_tool', + default=DEFAULT_ARK_FRONTEND_TOOL, help="ark frontend conversion tool") arguments = parser.parse_args() return arguments @@ -53,7 +54,7 @@ def skip(filepath, flag=False): skip_test['import_skip'] + \ skip_test['code_rule'] + skip_test['no_case'] if os.path.isfile(filepath): - if filepath.endswith('.ts'): + if filepath.endswith('.ts') or filepath.endswith('.js'): if filepath not in skip_test_list: return True else: @@ -72,57 +73,75 @@ def run_test(file, tool, flag=False): path_list = file.split(os.sep) if path_list[0] != '.': file = "." + os.sep + file - out_file_path = file.replace(TEST_PATH, OUT_PATH).replace(TS_EXT, TXT_EXT) - temp_out_file_path = file.replace(TS_EXT, TXT_EXT) - temp_abc_file_path = file.replace(TS_EXT, ABC_EXT) - ts_list = temp_out_file_path.split(os.sep) - ts_list.pop(-1) - ts_dir_path = os.sep.join(ts_list) - path_list = out_file_path.split(os.sep) - path_list.pop(-1) - out_dir_path = os.sep.join(path_list) - if not os.path.exists(out_dir_path): - os.makedirs(out_dir_path) - try: - if file in IMPORT_TEST['import'] + IMPORT_TEST['m_parameter']: - command_os(['node', '--expose-gc', tool, '-m', file, '--output-type']) + if file.endswith(TS_EXT): + tool = DEFAULT_ARK_FRONTEND_TOOL + out_file_path = file.replace(TEST_PATH, OUT_TS_PATH).replace(TS_EXT, TXT_EXT) + temp_out_file_path = file.replace(TS_EXT, TXT_EXT) + temp_abc_file_path = file.replace(TS_EXT, ABC_EXT) + ts_list = temp_out_file_path.split(os.sep) + ts_list.pop(-1) + ts_dir_path = os.sep.join(ts_list) + path_list = out_file_path.split(os.sep) + path_list.pop(-1) + out_dir_path = os.sep.join(path_list) + if not os.path.exists(out_dir_path): + os.makedirs(out_dir_path) + try: + if file in IMPORT_TEST['import'] + IMPORT_TEST['m_parameter']: + command_os(['node', '--expose-gc', tool, '-m', file, '--output-type']) + else: + command_os(['node', '--expose-gc', tool, file, '--output-type']) + except BaseException as e: + print(e) + if flag: + for root, dirs, files in os.walk(ts_dir_path): + for fi in files: + ts_file = f'{root}/{fi}' + if ABC_EXT in ts_file: + remove_file(ts_file) + elif TXT_EXT in ts_file: + sj_path = ts_file.replace(TEST_PATH, OUT_TS_PATH) + move_file(ts_file, sj_path) else: - command_os(['node', '--expose-gc', tool, file, '--output-type']) - except BaseException as e: - print(e) - if flag: - for root, dirs, files in os.walk(ts_dir_path): - for fi in files: - ts_file = f'{root}/{fi}' - if ABC_EXT in ts_file: - remove_file(ts_file) - elif TXT_EXT in ts_file: - sj_path = ts_file.replace(TEST_PATH, OUT_PATH) - move_file(ts_file, sj_path) - else: - if os.path.exists(temp_abc_file_path): - abc_judge(temp_abc_file_path) - remove_file(temp_abc_file_path) - if os.path.exists(temp_out_file_path): - move_file(temp_out_file_path, out_file_path) + if os.path.exists(temp_abc_file_path): + abc_judge(temp_abc_file_path) + remove_file(temp_abc_file_path) + if os.path.exists(temp_out_file_path): + move_file(temp_out_file_path, out_file_path) + elif file.endswith(JS_EXT): + abc_filepath = os.path.join(WORK_PATH, file.replace(JS_EXT, ABC_EXT).lstrip('./')) + output_path = file.replace(JS_EXT, TXT_EXT) + if tool == DEFAULT_ARK_FRONTEND_TOOL: + command_os(['node', '--expose-gc', tool, file]) + elif tool == ARK_FRONTEND_TOOL_ES2ABC: + command_os([tool, file, '--output', abc_filepath]) + os.chdir('../../') + run_abc_cmd = [ARK_JS_VM, abc_filepath] + run_abc_result = subprocess.Popen(run_abc_cmd, stdout=subprocess.PIPE) + js_result_list = [] + for line in run_abc_result.stdout.readlines(): + js_result = str(line).lstrip("b'").rstrip("\\n'")+'\n' + js_result_list.append(js_result) + remove_file(abc_filepath) + os.chdir(ARK_TS2ABC_PATH) + with open(output_path,'w') as output: + output.writelines(js_result_list) def run_test_machine(args): ark_frontend_tool = DEFAULT_ARK_FRONTEND_TOOL - result_path = [] if args.ark_frontend_tool: - ark_frontend_tool = args.ark_frontend_tool - + ark_frontend_tool = process_tool_path(args.ark_frontend_tool) + result_path = [] if args.file: if skip(args.file, True): if args.file in IMPORT_TEST['import']: run_test(args.file, ark_frontend_tool, True) result = compare(args.file, True) - result_path.append(result) else: run_test(args.file, ark_frontend_tool) result = compare(args.file) - result_path.append(result) + result_path.append(result) elif args.dir: for root, dirs, files in os.walk(args.dir): @@ -132,25 +151,23 @@ def run_test_machine(args): if test_path in IMPORT_TEST['import']: run_test(test_path, ark_frontend_tool, True) result = compare(test_path, True) - result_path.append(result) else: run_test(test_path, ark_frontend_tool) result = compare(test_path) - result_path.append(result) + result_path.append(result) elif args.file is None and args.dir is None: - for root, dirs, files in os.walk(TS_CASES_DIR): + for root, dirs, files in os.walk(CASES_DIR): for file in files: test_path = f'{root}/{file}' if skip(test_path): if test_path in IMPORT_TEST['import']: run_test(test_path, ark_frontend_tool, True) result = compare(test_path, True) - result_path.append(result) else: run_test(test_path, ark_frontend_tool) result = compare(test_path) - result_path.append(result) + result_path.append(result) with open(OUT_RESULT_FILE, 'w') as read_out_result: read_out_result.writelines(result_path) @@ -193,31 +210,42 @@ def compare(file, flag=False): path_list = file.split(os.sep) if path_list[0] != '.': file = "." + os.sep + file - out_path = file.replace(TEST_PATH, OUT_PATH).replace(TS_EXT, TXT_EXT) - expect_path = file.replace(TEST_PATH, EXPECT_PATH).replace(TS_EXT, TXT_EXT) - if flag: - path_list = out_path.split(os.sep) - del path_list[-1] - out_dir_path = os.sep.join(path_list) - for root, dirs, files in os.walk(out_dir_path): - for fi in files: - fi = f'{root}/{fi}' - if fi != out_path: - with open(fi, 'r') as read_out_txt: - el_file_txt = read_out_txt.read() - write_append(out_path, el_file_txt) - remove_file(fi) + if file.endswith(TS_EXT): + out_path = file.replace(TEST_PATH, OUT_TS_PATH).replace(TS_EXT, TXT_EXT) + expect_path = file.replace(TEST_PATH, EXPECT_PATH).replace(TS_EXT, TXT_EXT) + if flag: + path_list = out_path.split(os.sep) + del path_list[-1] + out_dir_path = os.sep.join(path_list) + for root, dirs, files in os.walk(out_dir_path): + for fi in files: + fi = f'{root}/{fi}' + if fi != out_path: + with open(fi, 'r') as read_out_txt: + el_file_txt = read_out_txt.read() + write_append(out_path, el_file_txt) + remove_file(fi) + elif file.endswith(JS_EXT): + out_path = file.replace(JS_EXT, TXT_EXT) + filepath_list = file.split(os.sep) + filepath_list[-1] = filepath_list[-1].replace(JS_EXT, EXPECT_EXT) + expect_path = (os.sep).join(filepath_list) if (not os.path.exists(out_path) or not os.path.exists(expect_path)): print("There are no expected files or validation file generation: %s", file) result = f'FAIL {file}\n' else: - outcont = read_out_file(out_path) - expectcont = read_file(expect_path) - expectcontlist = [] - for i in expectcont: - i = json.loads(i.replace("'", '"').replace('\n', '')) - expectcontlist.append(i) - if outcont == expectcontlist: + if file.endswith(TS_EXT): + outcont = read_out_file(out_path) + temp_expectcont = read_file(expect_path) + expectcont = [] + for i in temp_expectcont: + i = json.loads(i.replace("'", '"').replace('\n', '')) + expectcont.append(i) + elif file.endswith(JS_EXT): + outcont = read_file(out_path) + remove_file(out_path) + expectcont = read_file(expect_path) + if outcont == expectcont: result = f'PASS {file}\n' else: result = f'FAIL {file}\n' @@ -256,7 +284,7 @@ def prepare_ts_code(): return try: mk_dir(TS_CASES_DIR) - os.chdir('./testTs/test') + os.chdir(TS_CASES_DIR) command_os(['git', 'init']) command_os(['git', 'remote', 'add', 'origin', TS_GIT_PATH]) command_os(['git', 'config', 'core.sparsecheckout', 'true']) @@ -267,11 +295,11 @@ def prepare_ts_code(): remove_dir(TS_CASES_DIR) raise MyException( "Pull TypeScript Code Fail, Please Check The Network Request") - command_os(['git', 'apply', '../test-case.patch']) + command_os(['git', 'apply', '../../test-case.patch']) command_os(['cp', '-r', './tests/cases/conformance/.', './']) command_os(['rm', '-rf', './tests']) command_os(['rm', '-rf', '.git']) - os.chdir('../../') + os.chdir(WORK_PATH) except BaseException: print("pull test code fail") @@ -281,6 +309,7 @@ def main(args): init_path() excuting_npm_install(args) prepare_ts_code() + export_path() run_test_machine(args) summary() except BaseException: diff --git a/testTs/skip_tests.json b/testTs/skip_tests.json index 7c0018b1a7230d0bafd92c62e29455822bbffca3..1a7c094ede109efb3cbaae503a2979966c99d713 100644 --- a/testTs/skip_tests.json +++ b/testTs/skip_tests.json @@ -1,5238 +1,5239 @@ { "error.txt":[ - "./testTs/test/fixSignatureCaching.ts", - "./testTs/test/scanner/ecmascript3/scannerES3NumericLiteral6.ts", - "./testTs/test/scanner/ecmascript3/scannerES3NumericLiteral4.ts", - "./testTs/test/scanner/ecmascript3/scannerES3NumericLiteral3.ts", - "./testTs/test/scanner/ecmascript5/scannerNumericLiteral6.ts", - "./testTs/test/scanner/ecmascript5/scannerNumericLiteral4.ts", - "./testTs/test/scanner/ecmascript5/scannerUnicodeEscapeInKeyword1.ts", - "./testTs/test/scanner/ecmascript5/scannertest1.ts", - "./testTs/test/scanner/ecmascript5/scannerS7.8.3_A6.1_T1.ts", - "./testTs/test/scanner/ecmascript5/scannerS7.4_A2_T2.ts", - "./testTs/test/scanner/ecmascript5/scannerNumericLiteral3.ts", - "./testTs/test/scanner/ecmascript5/scannerStringLiterals.ts", - "./testTs/test/scanner/ecmascript5/scannerS7.3_A1.1_T2.ts", - "./testTs/test/scanner/ecmascript5/scannerImportDeclaration1.ts", - "./testTs/test/scanner/ecmascript5/scanner10.1.1-8gs.ts", - "./testTs/test/scanner/ecmascript5/scannerS7.2_A1.5_T2.ts", - "./testTs/test/scanner/ecmascript5/scannerUnicodeEscapeInKeyword2.ts", - "./testTs/test/scanner/ecmascript5/scannerClass2.ts", - "./testTs/test/scanner/ecmascript5/scannerUnexpectedNullCharacter1.ts", - "./testTs/test/scanner/ecmascript5/scannerNumericLiteral9.ts", - "./testTs/test/scanner/ecmascript5/scannerNumericLiteral2.ts", - "./testTs/test/scanner/ecmascript5/scannerNumericLiteral8.ts", - "./testTs/test/scanner/ecmascript5/scannerAdditiveExpression1.ts", - "./testTs/test/scanner/ecmascript5/scannerS7.6_A4.2_T1.ts", - "./testTs/test/scanner/ecmascript5/scannerS7.8.4_A7.1_T4.ts", - "./testTs/test/generators/generatorReturnTypeInference.ts", - "./testTs/test/generators/generatorImplicitAny.ts", - "./testTs/test/generators/generatorReturnTypeFallback.2.ts", - "./testTs/test/generators/generatorAssignability.ts", - "./testTs/test/generators/generatorReturnTypeFallback.3.ts", - "./testTs/test/generators/generatorExplicitReturnType.ts", - "./testTs/test/generators/generatorReturnContextualType.ts", - "./testTs/test/generators/generatorReturnTypeInferenceNonStrict.ts", - "./testTs/test/statements/labeledStatements/labeledStatementWithLabel_es2015.ts", - "./testTs/test/statements/labeledStatements/labeledStatementWithLabel.ts", - "./testTs/test/statements/labeledStatements/labeledStatementWithLabel_strict.ts", - "./testTs/test/statements/returnStatements/invalidReturnStatements.ts", - "./testTs/test/statements/for-inStatements/for-inStatementsInvalid.ts", - "./testTs/test/statements/for-inStatements/for-inStatements.ts", - "./testTs/test/statements/for-inStatements/for-inStatementsDestructuring3.ts", - "./testTs/test/statements/for-inStatements/for-inStatementsArrayErrors.ts", - "./testTs/test/statements/for-inStatements/for-inStatementsDestructuring4.ts", - "./testTs/test/statements/for-inStatements/for-inStatementsDestructuring.ts", - "./testTs/test/statements/for-inStatements/for-inStatementsDestructuring2.ts", - "./testTs/test/statements/switchStatements/switchStatements.ts", - "./testTs/test/statements/continueStatements/invalidWhileContinueStatements.ts", - "./testTs/test/statements/continueStatements/invalidForContinueStatements.ts", - "./testTs/test/statements/continueStatements/invalidDoWhileContinueStatements.ts", - "./testTs/test/statements/continueStatements/invalidForInContinueStatements.ts", - "./testTs/test/statements/continueStatements/invalidSwitchContinueStatement.ts", - "./testTs/test/statements/breakStatements/switchBreakStatements.ts", - "./testTs/test/statements/breakStatements/invalidDoWhileBreakStatements.ts", - "./testTs/test/statements/breakStatements/invalidWhileBreakStatements.ts", - "./testTs/test/statements/breakStatements/invalidSwitchBreakStatement.ts", - "./testTs/test/statements/breakStatements/invalidForBreakStatements.ts", - "./testTs/test/statements/breakStatements/invalidForInBreakStatements.ts", - "./testTs/test/statements/forStatements/forStatementsMultipleInvalidDecl.ts", - "./testTs/test/statements/throwStatements/invalidThrowStatement.ts", - "./testTs/test/statements/VariableStatements/everyTypeWithAnnotationAndInvalidInitializer.ts", - "./testTs/test/statements/VariableStatements/invalidMultipleVariableDeclarations.ts", - "./testTs/test/statements/for-ofStatements/ES3For-ofTypeCheck1.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of28.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck11.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck8.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of35.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck9.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck14.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of30.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of20.ts", - "./testTs/test/statements/for-ofStatements/ES3For-ofTypeCheck4.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck7.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of8.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of34.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of27.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of31.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of36.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of29.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of26.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of17.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of12.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck12.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of7.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck10.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck13.ts", - "./testTs/test/statements/tryStatements/catchClauseWithTypeAnnotation.ts", - "./testTs/test/statements/tryStatements/invalidTryStatements.ts", - "./testTs/test/statements/withStatements/withStatements.ts", - "./testTs/test/controlFlow/controlFlowAliasing.ts", - "./testTs/test/controlFlow/exhaustiveSwitchStatements1.ts", - "./testTs/test/controlFlow/controlFlowGenericTypes.ts", - "./testTs/test/controlFlow/definiteAssignmentAssertions.ts", - "./testTs/test/controlFlow/assertionTypePredicates1.ts", - "./testTs/test/controlFlow/controlFlowIterationErrors.ts", - "./testTs/test/controlFlow/controlFlowNullishCoalesce.ts", - "./testTs/test/controlFlow/controlFlowOptionalChain.ts", - "./testTs/test/controlFlow/controlFlowTypeofObject.ts", - "./testTs/test/controlFlow/controlFlowIIFE.ts", - "./testTs/test/controlFlow/definiteAssignmentAssertionsWithObjectShortHand.ts", - "./testTs/test/controlFlow/neverReturningFunctions1.ts", - "./testTs/test/controlFlow/controlFlowDeleteOperator.ts", - "./testTs/test/types/import/importTypeLocalMissing.ts", - "./testTs/test/types/import/importTypeNestedNoRef.ts", - "./testTs/test/types/import/importTypeGeneric.ts", - "./testTs/test/types/import/importTypeNonString.ts", - "./testTs/test/types/import/importTypeAmbientMissing.ts", - "./testTs/test/types/import/importTypeNested.ts", - "./testTs/test/types/never/neverTypeErrors2.ts", - "./testTs/test/types/never/neverTypeErrors1.ts", - "./testTs/test/types/never/neverIntersectionNotCallable.ts", - "./testTs/test/types/objectTypeLiteral/objectTypeLiteralSyntax2.ts", - "./testTs/test/types/objectTypeLiteral/indexSignatures/multipleNumericIndexers.ts", - "./testTs/test/types/objectTypeLiteral/indexSignatures/stringIndexerConstrainsPropertyDeclarations.ts", - "./testTs/test/types/objectTypeLiteral/indexSignatures/numericIndexerConstrainsPropertyDeclarations2.ts", - "./testTs/test/types/objectTypeLiteral/indexSignatures/numericIndexerConstrainsPropertyDeclarations.ts", - "./testTs/test/types/objectTypeLiteral/indexSignatures/multipleStringIndexers.ts", - "./testTs/test/types/objectTypeLiteral/indexSignatures/stringIndexerConstrainsPropertyDeclarations2.ts", - "./testTs/test/types/objectTypeLiteral/propertySignatures/numericStringNamedPropertyEquivalence.ts", - "./testTs/test/types/objectTypeLiteral/propertySignatures/stringNamedPropertyDuplicates.ts", - "./testTs/test/types/objectTypeLiteral/propertySignatures/numericNamedPropertyDuplicates.ts", - "./testTs/test/types/objectTypeLiteral/constructSignatures/constructSignaturesWithOverloads2.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignaturesWithDuplicateParameters.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/stringLiteralTypesInImplementationSignatures2.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignaturesWithParameterInitializers2.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/restParameterWithoutAnnotationIsAnyArray.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignatureWithOptionalParameterAndInitializer.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignaturesWithParameterInitializers.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignaturesWithAccessibilityModifiersOnParameters.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/constructSignatureWithAccessibilityModifiersOnParameters2.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/restParametersOfNonArrayTypes2.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/specializedSignatureIsNotSubtypeOfNonSpecializedSignature.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/restParametersOfNonArrayTypes.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/constructSignatureWithAccessibilityModifiersOnParameters.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignaturesThatDifferOnlyByReturnType2.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint4.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/restParametersWithArrayTypeAnnotations.ts", - "./testTs/test/types/objectTypeLiteral/methodSignatures/objectTypesWithOptionalProperties2.ts", - "./testTs/test/types/objectTypeLiteral/methodSignatures/methodSignaturesWithOverloads.ts", - "./testTs/test/types/objectTypeLiteral/methodSignatures/objectTypesWithOptionalProperties.ts", - "./testTs/test/types/literal/templateLiteralTypesPatterns.ts", - "./testTs/test/types/literal/templateLiteralTypes3.ts", - "./testTs/test/types/literal/enumLiteralTypes3.ts", - "./testTs/test/types/literal/stringLiteralsWithSwitchStatements02.ts", - "./testTs/test/types/literal/templateLiteralTypes2.ts", - "./testTs/test/types/literal/stringLiteralsWithEqualityChecks04.ts", - "./testTs/test/types/literal/stringLiteralsWithSwitchStatements01.ts", - "./testTs/test/types/literal/stringLiteralsAssertionsInEqualityComparisons02.ts", - "./testTs/test/types/literal/stringLiteralsWithEqualityChecks02.ts", - "./testTs/test/types/literal/templateLiteralTypesPatternsPrefixSuffixAssignability.ts", - "./testTs/test/types/literal/numericLiteralTypes3.ts", - "./testTs/test/types/literal/stringLiteralsWithSwitchStatements04.ts", - "./testTs/test/types/literal/stringLiteralsWithSwitchStatements03.ts", - "./testTs/test/types/literal/templateLiteralTypes1.ts", - "./testTs/test/types/literal/literalTypesWidenInParameterPosition.ts", - "./testTs/test/types/literal/stringLiteralsWithEqualityChecks01.ts", - "./testTs/test/types/literal/stringEnumLiteralTypes3.ts", - "./testTs/test/types/literal/stringLiteralsWithEqualityChecks03.ts", - "./testTs/test/types/specifyingTypes/typeQueries/circularTypeofWithVarOrFunc.ts", - "./testTs/test/types/specifyingTypes/typeQueries/typeQueryOnClass.ts", - "./testTs/test/types/specifyingTypes/typeQueries/invalidTypeOfTarget.ts", - "./testTs/test/types/specifyingTypes/typeQueries/recursiveTypesWithTypeof.ts", - "./testTs/test/types/specifyingTypes/typeQueries/typeofThis.ts", - "./testTs/test/types/specifyingTypes/typeQueries/typeofAnExportedType.ts", - "./testTs/test/types/specifyingTypes/typeQueries/typeofTypeParameter.ts", - "./testTs/test/types/specifyingTypes/typeQueries/typeofANonExportedType.ts", - "./testTs/test/types/specifyingTypes/typeQueries/typeofClassWithPrivates.ts", - "./testTs/test/types/specifyingTypes/typeReferences/nonGenericTypeReferenceWithTypeArguments.ts", - "./testTs/test/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument3.ts", - "./testTs/test/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument.d.ts", - "./testTs/test/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument2.ts", - "./testTs/test/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument.ts", - "./testTs/test/types/specifyingTypes/typeLiterals/arrayTypeOfFunctionTypes.ts", - "./testTs/test/types/specifyingTypes/typeLiterals/unionTypeLiterals.ts", - "./testTs/test/types/specifyingTypes/typeLiterals/arrayTypeOfFunctionTypes2.ts", - "./testTs/test/types/specifyingTypes/typeLiterals/arrayTypeOfTypeOf.ts", - "./testTs/test/types/specifyingTypes/predefinedTypes/objectTypesWithPredefinedTypesAsName.ts", - "./testTs/test/types/specifyingTypes/predefinedTypes/objectTypesWithPredefinedTypesAsName2.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveIndexingWithForInNoImplicitAny.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveConstraintOfIndexAccessType.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveAssignError.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveInGeneric.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveAsProperty.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveAndTypeVariables.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveStrictNull.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveNarrow.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveUnionIntersection.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveInFunction.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveAccessProperty.ts", - "./testTs/test/types/thisType/thisTypeErrors2.ts", - "./testTs/test/types/thisType/typeRelationships.ts", - "./testTs/test/types/thisType/thisTypeErrors.ts", - "./testTs/test/types/thisType/thisTypeInFunctions.ts", - "./testTs/test/types/thisType/thisTypeAccessibility.ts", - "./testTs/test/types/thisType/thisTypeInAccessorsNegative.ts", - "./testTs/test/types/thisType/unionThisTypeInFunctions.ts", - "./testTs/test/types/thisType/thisTypeInAccessors.ts", - "./testTs/test/types/thisType/thisTypeInFunctions2.ts", - "./testTs/test/types/thisType/looseThisTypeInFunctions.ts", - "./testTs/test/types/thisType/declarationFiles.ts", - "./testTs/test/types/thisType/thisTypeInFunctionsNegative.ts", - "./testTs/test/types/members/typesWithProtectedConstructor.ts", - "./testTs/test/types/members/objectTypeWithConstructSignatureAppearsToBeFunctionType.ts", - "./testTs/test/types/members/objectTypeWithStringIndexerHidingObjectIndexer.ts", - "./testTs/test/types/members/duplicatePropertyNames.ts", - "./testTs/test/types/members/objectTypeHidingMembersOfObjectAssignmentCompat2.ts", - "./testTs/test/types/members/typesWithPublicConstructor.ts", - "./testTs/test/types/members/typesWithPrivateConstructor.ts", - "./testTs/test/types/members/objectTypeWithCallSignatureHidingMembersOfFunctionAssignmentCompat.ts", - "./testTs/test/types/members/indexSignatures1.ts", - "./testTs/test/types/members/duplicateStringIndexers.ts", - "./testTs/test/types/members/augmentedTypeAssignmentCompatIndexSignature.ts", - "./testTs/test/types/members/classWithPrivateProperty.ts", - "./testTs/test/types/members/objectTypeHidingMembersOfObjectAssignmentCompat.ts", - "./testTs/test/types/members/objectTypeWithStringAndNumberIndexSignatureToAny.ts", - "./testTs/test/types/members/objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts", - "./testTs/test/types/members/objectTypeWithDuplicateNumericProperty.ts", - "./testTs/test/types/members/objectTypeHidingMembersOfExtendedObject.ts", - "./testTs/test/types/members/duplicateNumericIndexers.ts", - "./testTs/test/types/localTypes/localTypes4.ts", - "./testTs/test/types/typeAliases/directDependenceBetweenTypeAliases.ts", - "./testTs/test/types/typeAliases/intrinsicKeyword.ts", - "./testTs/test/types/typeAliases/typeAliasesForObjectTypes.ts", - "./testTs/test/types/typeAliases/intrinsicTypes.ts", - "./testTs/test/types/typeAliases/reservedNamesInAliases.ts", - "./testTs/test/types/typeAliases/typeAliasesDoNotMerge.ts", - "./testTs/test/types/witness/witness.ts", - "./testTs/test/types/mapped/mappedTypeErrors2.ts", - "./testTs/test/types/mapped/mappedTypeErrors.ts", - "./testTs/test/types/mapped/mappedTypes5.ts", - "./testTs/test/types/mapped/recursiveMappedTypes.ts", - "./testTs/test/types/mapped/mappedTypeWithAny.ts", - "./testTs/test/types/mapped/mappedTypeAsClauseRelationships.ts", - "./testTs/test/types/mapped/mappedTypeAsClauses.ts", - "./testTs/test/types/mapped/mappedTypeProperties.ts", - "./testTs/test/types/mapped/mappedTypeRelationships.ts", - "./testTs/test/types/mapped/mappedTypeInferenceErrors.ts", - "./testTs/test/types/mapped/mappedTypes6.ts", - "./testTs/test/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionInferenceError.ts", - "./testTs/test/types/contextualTypes/commaOperator/contextuallyTypeCommaOperator03.ts", - "./testTs/test/types/contextualTypes/commaOperator/contextuallyTypeCommaOperator02.ts", - "./testTs/test/types/contextualTypes/methodDeclarations/contextuallyTypedClassExpressionMethodDeclaration01.ts", - "./testTs/test/types/contextualTypes/methodDeclarations/contextuallyTypedBindingInitializerNegative.ts", - "./testTs/test/types/contextualTypes/methodDeclarations/contextuallyTypedClassExpressionMethodDeclaration02.ts", - "./testTs/test/types/contextualTypes/logicalAnd/contextuallyTypeLogicalAnd03.ts", - "./testTs/test/types/contextualTypes/logicalAnd/contextuallyTypeLogicalAnd02.ts", - "./testTs/test/types/conditional/conditionalTypes1.ts", - "./testTs/test/types/conditional/inferTypes1.ts", - "./testTs/test/types/conditional/conditionalTypesExcessProperties.ts", - "./testTs/test/types/conditional/conditionalTypes2.ts", - "./testTs/test/types/namedTypes/interfaceWithPrivateMember.ts", - "./testTs/test/types/primitives/string/invalidStringAssignments.ts", - "./testTs/test/types/primitives/string/assignFromStringInterface.ts", - "./testTs/test/types/primitives/string/assignFromStringInterface2.ts", - "./testTs/test/types/primitives/string/stringPropertyAccessWithError.ts", - "./testTs/test/types/primitives/number/assignFromNumberInterface2.ts", - "./testTs/test/types/primitives/number/assignFromNumberInterface.ts", - "./testTs/test/types/primitives/number/invalidNumberAssignments.ts", - "./testTs/test/types/primitives/undefined/invalidUndefinedAssignments.ts", - "./testTs/test/types/primitives/undefined/directReferenceToUndefined.ts", - "./testTs/test/types/primitives/void/invalidVoidAssignments.ts", - "./testTs/test/types/primitives/void/invalidAssignmentsToVoid.ts", - "./testTs/test/types/primitives/void/invalidVoidValues.ts", - "./testTs/test/types/primitives/boolean/boolInsteadOfBoolean.ts", - "./testTs/test/types/primitives/boolean/assignFromBooleanInterface2.ts", - "./testTs/test/types/primitives/boolean/assignFromBooleanInterface.ts", - "./testTs/test/types/primitives/boolean/invalidBooleanAssignments.ts", - "./testTs/test/types/primitives/null/validNullAssignments.ts", - "./testTs/test/types/primitives/null/directReferenceToNull.ts", - "./testTs/test/types/primitives/enum/invalidEnumAssignments.ts", - "./testTs/test/types/union/unionTypeMembers.ts", - "./testTs/test/types/union/unionTypeCallSignatures5.ts", - "./testTs/test/types/union/unionTypeReduction2.ts", - "./testTs/test/types/union/unionTypeCallSignatures4.ts", - "./testTs/test/types/union/unionTypeWithIndexSignature.ts", - "./testTs/test/types/union/unionTypeCallSignatures.ts", - "./testTs/test/types/union/unionTypePropertyAccessibility.ts", - "./testTs/test/types/union/unionTypeFromArrayLiteral.ts", - "./testTs/test/types/union/unionTypeEquivalence.ts", - "./testTs/test/types/union/unionTypeReadonly.ts", - "./testTs/test/types/union/unionTypeCallSignatures6.ts", - "./testTs/test/types/union/unionTypeConstructSignatures.ts", - "./testTs/test/types/union/discriminatedUnionTypes1.ts", - "./testTs/test/types/union/discriminatedUnionTypes2.ts", - "./testTs/test/types/union/contextualTypeWithUnionTypeObjectLiteral.ts", - "./testTs/test/types/tuple/strictTupleLength.ts", - "./testTs/test/types/tuple/variadicTuples2.ts", - "./testTs/test/types/tuple/wideningTuples7.ts", - "./testTs/test/types/tuple/unionsOfTupleTypes1.ts", - "./testTs/test/types/tuple/indexerWithTuple.ts", - "./testTs/test/types/tuple/castingTuple.ts", - "./testTs/test/types/tuple/wideningTuples4.ts", - "./testTs/test/types/tuple/readonlyArraysAndTuples.ts", - "./testTs/test/types/tuple/wideningTuples5.ts", - "./testTs/test/types/tuple/optionalTupleElements1.ts", - "./testTs/test/types/tuple/wideningTuples3.ts", - "./testTs/test/types/tuple/arityAndOrderCompatibility01.ts", - "./testTs/test/types/tuple/restTupleElements1.ts", - "./testTs/test/types/tuple/tupleLengthCheck.ts", - "./testTs/test/types/tuple/contextualTypeWithTuple.ts", - "./testTs/test/types/tuple/variadicTuples1.ts", - "./testTs/test/types/tuple/named/namedTupleMembersErrors.ts", - "./testTs/test/types/tuple/emptyTuples/emptyTuplesTypeAssertion02.ts", - "./testTs/test/types/tuple/emptyTuples/emptyTuplesTypeAssertion01.ts", - "./testTs/test/types/keyof/keyofAndIndexedAccess2.ts", - "./testTs/test/types/keyof/circularIndexedAccessErrors.ts", - "./testTs/test/types/keyof/keyofAndIndexedAccessErrors.ts", - "./testTs/test/types/any/anyAsConstructor.ts", - "./testTs/test/types/any/narrowExceptionVariableInCatchClause.ts", - "./testTs/test/types/any/assignAnyToEveryType.ts", - "./testTs/test/types/any/anyAsGenericFunctionCall.ts", - "./testTs/test/types/any/narrowFromAnyWithInstanceof.ts", - "./testTs/test/types/any/narrowFromAnyWithTypePredicate.ts", - "./testTs/test/types/forAwait/types.forAwait.es2018.2.ts", - "./testTs/test/types/forAwait/types.forAwait.es2018.3.ts", - "./testTs/test/types/typeParameters/typeParameterAsBaseType.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/functionConstraintSatisfaction2.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/instantiateGenericClassWithWrongNumberOfTypeArguments.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/callGenericFunctionWithIncorrectNumberOfTypeArguments.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints4.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/callNonGenericFunctionWithTypeArguments.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/instantiateNonGenericTypeWithTypeArguments.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraint2.ts", - "./testTs/test/types/typeParameters/typeParameterLists/typeParameterDirectlyConstrainedToItself.ts", - "./testTs/test/types/typeParameters/typeParameterLists/typeParameterIndirectlyConstrainedToItself.ts", - "./testTs/test/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints5.ts", - "./testTs/test/types/typeParameters/typeParameterLists/staticMembersUsingClassTypeParameter.ts", - "./testTs/test/types/typeParameters/typeParameterLists/typesWithDuplicateTypeParameters.ts", - "./testTs/test/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints4.ts", - "./testTs/test/types/asyncGenerators/types.asyncGenerators.es2018.2.ts", - "./testTs/test/types/spread/objectSpreadSetonlyAccessor.ts", - "./testTs/test/types/spread/spreadDuplicateExact.ts", - "./testTs/test/types/spread/spreadDuplicate.ts", - "./testTs/test/types/spread/objectSpreadIndexSignature.ts", - "./testTs/test/types/spread/objectSpreadNegative.ts", - "./testTs/test/types/spread/spreadUnion3.ts", - "./testTs/test/types/spread/objectSpreadStrictNull.ts", - "./testTs/test/types/spread/spreadMethods.ts", - "./testTs/test/types/spread/spreadTypeVariable.ts", - "./testTs/test/types/spread/objectSpreadNegativeParse.ts", - "./testTs/test/types/spread/spreadOverwritesPropertyStrict.ts", - "./testTs/test/types/spread/spreadUnion2.ts", - "./testTs/test/types/unknown/unknownType2.ts", - "./testTs/test/types/unknown/unknownType1.ts", - "./testTs/test/types/uniqueSymbol/uniqueSymbolsDeclarationsInJsErrors.ts", - "./testTs/test/types/uniqueSymbol/uniqueSymbolsErrors.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/recursiveTypeReferences1.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/recursiveTypeReferences2.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/objectTypeWithRecursiveWrappedProperty.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/objectTypeWithRecursiveWrappedPropertyCheckedNominally.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/objectTypeWithRecursiveWrappedProperty2.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/infiniteExpansionThroughInstantiation.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer2.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignaturesWithOptionalParameters.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesWithSpecializedSignatures.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers3.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer4.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameter.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer4.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesWithOptionalParameters.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers2.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures6.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesWithRestParameters.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers5.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersAccessibility2.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality2.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithRecursiveConstraints.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypesOfUnion.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithConstraints.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer3.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/unionSubtypeIfEveryConstituentTypeIsSubtype.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersAccessibility.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/enumIsNotASubtypeOfAnythingButNumber.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithGenericCallSignaturesWithOptionalParameters.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer5.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer2.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithGenericConstructSignaturesWithOptionalParameters.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer3.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesA.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignaturesWithSpecializedSignatures.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithConstraints4.ts", - "./testTs/test/types/typeRelationships/comparable/switchCaseWithUnionTypes01.ts", - "./testTs/test/types/typeRelationships/comparable/equalityWithEnumTypes.ts", - "./testTs/test/types/typeRelationships/comparable/equalityWithIntersectionTypes01.ts", - "./testTs/test/types/typeRelationships/comparable/typeAssertionsWithUnionTypes01.ts", - "./testTs/test/types/typeRelationships/comparable/equalityStrictNulls.ts", - "./testTs/test/types/typeRelationships/comparable/typeAssertionsWithIntersectionTypes01.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignatures3.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/unionTypeIdentity.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates3.ts", - "./testTs/test/types/typeRelationships/bestCommonType/bestCommonTypeOfTuple2.ts", - "./testTs/test/types/typeRelationships/bestCommonType/bestCommonTypeOfTuple.ts", - "./testTs/test/types/typeRelationships/instanceOf/narrowingGenericTypeFromInstanceof01.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithGenericSignatureArguments3.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints4.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithConstraintsTypeArgumentInference2.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithGenericSignatureArguments2.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithConstructorTypedArguments5.ts", - "./testTs/test/types/typeRelationships/typeInference/genericClassWithFunctionTypedMemberArguments.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithTupleType.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints3.ts", - "./testTs/test/types/typeRelationships/typeInference/indexSignatureTypeInference.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments2.ts", - "./testTs/test/types/typeRelationships/typeInference/contextualSignatureInstantiation.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithOverloadedFunctionTypedArguments2.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments5.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithOverloadedConstructorTypedArguments2.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectLiteralArgs.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints5.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallToOverloadedMethodWithOverloadedArguments.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectTypeArgs.ts", - "./testTs/test/types/typeRelationships/typeInference/unionTypeInference.ts", - "./testTs/test/types/typeRelationships/apparentType/apparentTypeSubtyping.ts", - "./testTs/test/types/typeRelationships/apparentType/apparentTypeSupertype.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersStringNumericNames.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/typeParameterAssignability2.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersAccessibility.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures5.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignaturesWithOptionalParameters.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures2.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersOptionality2.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignaturesWithOptionalParameters.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatBetweenTupleAndArray.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance3.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer3.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/unionTypesAssignability.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignaturesWithOptionalParameters.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/genericCallWithObjectTypeArgsAndInitializers.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer2.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers5.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance6.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/typeParameterAssignability3.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures2.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/nullAssignedToUndefined.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithNumericIndexer3.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/enumAssignabilityInInheritance.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures6.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/optionalPropertyAssignableToStringIndexSignature.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/covariantCallbacks.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures3.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithNumericIndexer2.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers4.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance6.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/typeParameterAssignability.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures2.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance3.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithNumericIndexer.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithDiscriminatedUnion.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures4.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures5.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersOptionality.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignaturesWithRestParameters.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures4.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures4.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures6.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/enumAssignability.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures3.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesOverloadAssignability02.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesWithTemplateStrings02.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesAndLogicalOrExpressions01.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesWithVariousOperators02.ts", - "./testTs/test/types/stringLiteral/typeArgumentsWithStringLiteralTypes01.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesInVariableDeclarations01.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesOverloads05.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesOverloadAssignability01.ts", - "./testTs/test/types/intersection/intersectionReduction.ts", - "./testTs/test/types/intersection/intersectionAsWeakTypeSource.ts", - "./testTs/test/types/intersection/intersectionWithIndexSignatures.ts", - "./testTs/test/types/intersection/intersectionTypeReadonly.ts", - "./testTs/test/types/intersection/intersectionReductionStrict.ts", - "./testTs/test/types/intersection/intersectionTypeInference.ts", - "./testTs/test/types/intersection/intersectionWithUnionConstraint.ts", - "./testTs/test/types/intersection/intersectionAndUnionTypes.ts", - "./testTs/test/types/intersection/intersectionNarrowing.ts", - "./testTs/test/types/intersection/commonTypeIntersection.ts", - "./testTs/test/types/intersection/recursiveIntersectionTypes.ts", - "./testTs/test/types/intersection/intersectionTypeAssignment.ts", - "./testTs/test/types/rest/genericRestArity.ts", - "./testTs/test/types/rest/genericRestArityStrict.ts", - "./testTs/test/types/rest/genericRestParameters1.ts", - "./testTs/test/types/rest/objectRest.ts", - "./testTs/test/types/rest/restTuplesFromContextualTypes.ts", - "./testTs/test/types/rest/objectRestPropertyMustBeLast.ts", - "./testTs/test/types/rest/restElementMustBeLast.ts", - "./testTs/test/types/rest/objectRestNegative.ts", - "./testTs/test/types/rest/genericRestParameters3.ts", - "./testTs/test/pedantic/noUncheckedIndexedAccess.ts", - "./testTs/test/pedantic/noUncheckedIndexedAccessDestructuring.ts", - "./testTs/test/internalModules/codeGeneration/importStatementsInterfaces.ts", - "./testTs/test/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModuleMemberThatUsesClassTypeParameter.ts", - "./testTs/test/internalModules/DeclarationMerging/ModuleAndFunctionWithSameNameAndCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.ts", - "./testTs/test/internalModules/DeclarationMerging/ClassAndModuleWithSameNameAndCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedClassesOfTheSameName.ts", - "./testTs/test/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedLocalVarsOfTheSameName.ts", - "./testTs/test/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.ts", - "./testTs/test/internalModules/DeclarationMerging/FunctionAndModuleWithSameNameAndCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedStaticFunctionUsingClassPrivateStatics.ts", - "./testTs/test/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.ts", - "./testTs/test/internalModules/DeclarationMerging/ClassAndModuleWithSameNameAndCommonRootES6.ts", - "./testTs/test/internalModules/DeclarationMerging/ModuleAndClassWithSameNameAndCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndNonGenericClassStaticFunctionOfTheSameName.ts", - "./testTs/test/internalModules/importDeclarations/shadowedInternalModule.ts", - "./testTs/test/internalModules/importDeclarations/invalidImportAliasIdentifiers.ts", - "./testTs/test/internalModules/importDeclarations/circularImportAlias.ts", - "./testTs/test/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedVariables.ts", - "./testTs/test/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedClasses.ts", - "./testTs/test/internalModules/exportDeclarations/NonInitializedExportInInternalModule.ts", - "./testTs/test/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedEnums.ts", - "./testTs/test/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedImportAlias.ts", - "./testTs/test/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedFunctions.ts", - "./testTs/test/internalModules/moduleDeclarations/invalidInstantiatedModule.ts", - "./testTs/test/internalModules/moduleDeclarations/invalidNestedModules.ts", - "./testTs/test/internalModules/moduleDeclarations/InvalidNonInstantiatedModule.ts", - "./testTs/test/internalModules/moduleBody/invalidModuleWithVarStatements.ts", - "./testTs/test/internalModules/moduleBody/invalidModuleWithStatementsOfEveryKind.ts", - "./testTs/test/classes/mixinAccessModifiers.ts", - "./testTs/test/classes/awaitAndYieldInProperty.ts", - "./testTs/test/classes/mixinAbstractClasses.2.ts", - "./testTs/test/classes/nestedClassDeclaration.ts", - "./testTs/test/classes/indexMemberDeclarations/privateIndexer.ts", - "./testTs/test/classes/indexMemberDeclarations/publicIndexer.ts", - "./testTs/test/classes/indexMemberDeclarations/privateIndexer2.ts", - "./testTs/test/classes/indexMemberDeclarations/staticIndexers.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock7.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock16.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock6.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock3.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlockUseBeforeDef2.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock20.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock8.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock19.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock4.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock26.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock23.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock22.ts", - "./testTs/test/classes/propertyMemberDeclarations/assignParameterPropertyToPropertyDeclarationESNext.ts", - "./testTs/test/classes/propertyMemberDeclarations/definePropertyOutputES3.ts", - "./testTs/test/classes/propertyMemberDeclarations/accessorsOverrideProperty6.ts", - "./testTs/test/classes/propertyMemberDeclarations/accessorsOverrideProperty3.ts", - "./testTs/test/classes/propertyMemberDeclarations/constructorParameterShadowsOuterScopes.ts", - "./testTs/test/classes/propertyMemberDeclarations/initializerReferencingConstructorLocals.ts", - "./testTs/test/classes/propertyMemberDeclarations/redefinedPararameterProperty.ts", - "./testTs/test/classes/propertyMemberDeclarations/propertyOverridesAccessors.ts", - "./testTs/test/classes/propertyMemberDeclarations/accessorsOverrideProperty4.ts", - "./testTs/test/classes/propertyMemberDeclarations/propertyAndFunctionWithSameName.ts", - "./testTs/test/classes/propertyMemberDeclarations/initializerReferencingConstructorParameters.ts", - "./testTs/test/classes/propertyMemberDeclarations/propertyOverridesAccessors5.ts", - "./testTs/test/classes/propertyMemberDeclarations/constructorParameterShadowsOuterScopes2.ts", - "./testTs/test/classes/propertyMemberDeclarations/strictPropertyInitialization.ts", - "./testTs/test/classes/propertyMemberDeclarations/propertyAndAccessorWithSameName.ts", - "./testTs/test/classes/propertyMemberDeclarations/propertyOverridesAccessors3.ts", - "./testTs/test/classes/propertyMemberDeclarations/propertyOverridesAccessors2.ts", - "./testTs/test/classes/propertyMemberDeclarations/redeclaredProperty.ts", - "./testTs/test/classes/propertyMemberDeclarations/twoAccessorsWithSameName2.ts", - "./testTs/test/classes/propertyMemberDeclarations/propertyNamedPrototype.ts", - "./testTs/test/classes/propertyMemberDeclarations/accessorsOverrideProperty.ts", - "./testTs/test/classes/propertyMemberDeclarations/staticPropertyNameConflicts.ts", - "./testTs/test/classes/propertyMemberDeclarations/accessorsOverrideProperty7.ts", - "./testTs/test/classes/propertyMemberDeclarations/accessorsOverrideProperty2.ts", - "./testTs/test/classes/propertyMemberDeclarations/accessorsOverrideMethod.ts", - "./testTs/test/classes/propertyMemberDeclarations/propertyOverridesAccessors4.ts", - "./testTs/test/classes/propertyMemberDeclarations/derivedUninitializedPropertyDeclaration.ts", - "./testTs/test/classes/propertyMemberDeclarations/abstractPropertyInitializer.ts", - "./testTs/test/classes/propertyMemberDeclarations/twoAccessorsWithSameName.ts", - "./testTs/test/classes/propertyMemberDeclarations/propertyNamedConstructor.ts", - "./testTs/test/classes/propertyMemberDeclarations/accessibilityModifiers.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberFunctionDeclarations/instanceMemberAssignsToClassPrototype.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberFunctionDeclarations/staticMemberAssignsToConstructorFunctionMembers.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionOverloadMixingStaticAndInstance.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberFunctionDeclarations/derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPrivateOverloads.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPublicPrivateOverloads.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorWithES3.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberAccessorDeclarations/typeOfThisInAccessor.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorsAreNotContextuallyTyped.ts", - "./testTs/test/classes/members/constructorFunctionTypes/classWithStaticMembers.ts", - "./testTs/test/classes/members/constructorFunctionTypes/classWithBaseClassButNoConstructor.ts", - "./testTs/test/classes/members/constructorFunctionTypes/classWithConstructors.ts", - "./testTs/test/classes/members/accessibility/privateProtectedMembersAreNotAccessibleDestructuring.ts", - "./testTs/test/classes/members/accessibility/protectedStaticNotAccessibleInClodule.ts", - "./testTs/test/classes/members/accessibility/privateStaticNotAccessibleInClodule2.ts", - "./testTs/test/classes/members/accessibility/privateStaticNotAccessibleInClodule.ts", - "./testTs/test/classes/members/accessibility/protectedClassPropertyAccessibleWithinNestedSubclass1.ts", - "./testTs/test/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts", - "./testTs/test/classes/members/accessibility/protectedClassPropertyAccessibleWithinSubclass2.ts", - "./testTs/test/classes/members/accessibility/protectedStaticClassPropertyAccessibleWithinSubclass2.ts", - "./testTs/test/classes/members/accessibility/privateInstanceMemberAccessibility.ts", - "./testTs/test/classes/members/accessibility/protectedInstanceMemberAccessibility.ts", - "./testTs/test/classes/members/accessibility/classPropertyAsPrivate.ts", - "./testTs/test/classes/members/accessibility/classPropertyIsPublicByDefault.ts", - "./testTs/test/classes/members/accessibility/privateStaticMemberAccessibility.ts", - "./testTs/test/classes/members/accessibility/protectedClassPropertyAccessibleWithinNestedSubclass.ts", - "./testTs/test/classes/members/accessibility/classPropertyAsProtected.ts", - "./testTs/test/classes/members/accessibility/protectedClassPropertyAccessibleWithinSubclass3.ts", - "./testTs/test/classes/members/accessibility/protectedStaticClassPropertyAccessibleWithinSubclass.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers6.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInInstanceMember2.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInInstanceMember.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInstanceMemberNarrowedWithLoopAntecedent.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassTransitivity3.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassTransitivity.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassWithPrivateStaticShadowingPublicStatic.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers4.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers3.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedGenericClassWithAny.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassOverridesPublicMembers.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassWithPrivateInstanceShadowingPublicInstance.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassFunctionOverridesBaseClassAccessor.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassWithPrivateStaticShadowingProtectedStatic.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassWithAny.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassOverridesPrivates.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassIncludesInheritedMembers.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassWithPrivateInstanceShadowingProtectedInstance.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassTransitivity4.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassTransitivity2.ts", - "./testTs/test/classes/members/classTypes/staticPropertyNotInClassType.ts", - "./testTs/test/classes/members/classTypes/instancePropertyInClassType.ts", - "./testTs/test/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts", - "./testTs/test/classes/members/privateNames/privateNameInObjectLiteral-2.ts", - "./testTs/test/classes/members/privateNames/privateNameMethodsDerivedClasses.ts", - "./testTs/test/classes/members/privateNames/privateNamesNotAllowedInVariableDeclarations.ts", - "./testTs/test/classes/members/privateNames/privateNameJsBadDeclaration.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticFieldDerivedClasses.ts", - "./testTs/test/classes/members/privateNames/privateNameInInExpression.ts", - "./testTs/test/classes/members/privateNames/privateNameAndAny.ts", - "./testTs/test/classes/members/privateNames/privateNameConstructorReserved.ts", - "./testTs/test/classes/members/privateNames/privateNameUnused.ts", - "./testTs/test/classes/members/privateNames/privateNamesNoDelete.ts", - "./testTs/test/classes/members/privateNames/privateNamesAndGenericClasses-2.ts", - "./testTs/test/classes/members/privateNames/privateNamesUnique-5.ts", - "./testTs/test/classes/members/privateNames/privateNamesAndDecorators.ts", - "./testTs/test/classes/members/privateNames/privateNameMethodClassExpression.ts", - "./testTs/test/classes/members/privateNames/privateNamesUnique-1.ts", - "./testTs/test/classes/members/privateNames/privateNameMethodAccess.ts", - "./testTs/test/classes/members/privateNames/privateNamesUnique-2.ts", - "./testTs/test/classes/members/privateNames/privateNameImplicitDeclaration.ts", - "./testTs/test/classes/members/privateNames/privateNameEnum.ts", - "./testTs/test/classes/members/privateNames/privateNameMethodAssignment.ts", - "./testTs/test/classes/members/privateNames/privateNamesUnique-4.ts", - "./testTs/test/classes/members/privateNames/privateNamesUnique-3.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticAccessorssDerivedClasses.ts", - "./testTs/test/classes/members/privateNames/privateNamesUseBeforeDef.ts", - "./testTs/test/classes/members/privateNames/privateNamesConstructorChain-2.ts", - "./testTs/test/classes/members/privateNames/privateNameNestedClassFieldShadowing.ts", - "./testTs/test/classes/members/privateNames/privateNamesIncompatibleModifiersJs.ts", - "./testTs/test/classes/members/privateNames/privateNameSetterNoGetter.ts", - "./testTs/test/classes/members/privateNames/privateNamesInNestedClasses-1.ts", - "./testTs/test/classes/members/privateNames/privateNameNotAllowedOutsideClass.ts", - "./testTs/test/classes/members/privateNames/privateNamesAndStaticFields.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticMethodAsync.ts", - "./testTs/test/classes/members/privateNames/privateNameMethod.ts", - "./testTs/test/classes/members/privateNames/privateNamesInNestedClasses-2.ts", - "./testTs/test/classes/members/privateNames/privateNamesAndIndexedAccess.ts", - "./testTs/test/classes/members/privateNames/privateNamesNotAllowedAsParameters.ts", - "./testTs/test/classes/members/privateNames/privateNameFieldDerivedClasses.ts", - "./testTs/test/classes/members/privateNames/privateNameCircularReference.ts", - "./testTs/test/classes/members/privateNames/privateNameNestedClassAccessorsShadowing.ts", - "./testTs/test/classes/members/privateNames/privateNameAndPropertySignature.ts", - "./testTs/test/classes/members/privateNames/privateNameAccessorsAccess.ts", - "./testTs/test/classes/members/privateNames/privateNameNotAccessibleOutsideDefiningClass.ts", - "./testTs/test/classes/members/privateNames/privateNameAccessorssDerivedClasses.ts", - "./testTs/test/classes/members/privateNames/privateNameNestedClassMethodShadowing.ts", - "./testTs/test/classes/members/privateNames/privateWriteOnlyAccessorRead.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticMethod.ts", - "./testTs/test/classes/members/privateNames/privateNameUncheckedJsOptionalChain.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticAccessors.ts", - "./testTs/test/classes/members/privateNames/privateNameNestedMethodAccess.ts", - "./testTs/test/classes/members/privateNames/privateNameAmbientNoImplicitAny.ts", - "./testTs/test/classes/members/privateNames/privateNameHashCharName.ts", - "./testTs/test/classes/members/privateNames/privateNameAccessors.ts", - "./testTs/test/classes/members/privateNames/privateNameBadAssignment.ts", - "./testTs/test/classes/members/privateNames/privateNameJsBadAssignment.ts", - "./testTs/test/classes/members/privateNames/privateNameFieldsESNext.ts", - "./testTs/test/classes/members/privateNames/privateNamesIncompatibleModifiers.ts", - "./testTs/test/classes/members/privateNames/privateNameReadonly.ts", - "./testTs/test/classes/members/privateNames/privateNamesInterfaceExtendingClass.ts", - "./testTs/test/classes/members/privateNames/privateNameBadDeclaration.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticAccessorsAccess.ts", - "./testTs/test/classes/members/privateNames/privateNameInObjectLiteral-3.ts", - "./testTs/test/classes/members/privateNames/privateNamesInGenericClasses.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticMethodAssignment.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticMethodClassExpression.ts", - "./testTs/test/classes/members/privateNames/privateNameBadSuper.ts", - "./testTs/test/classes/members/privateNames/privateNameAndIndexSignature.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticFieldAccess.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticEmitHelpers.ts", - "./testTs/test/classes/members/privateNames/privateNameAndObjectRestSpread.ts", - "./testTs/test/classes/members/privateNames/privateNameDeclarationMerging.ts", - "./testTs/test/classes/members/privateNames/privateNameInInExpressionUnused.ts", - "./testTs/test/classes/members/privateNames/privateNameInObjectLiteral-1.ts", - "./testTs/test/classes/members/privateNames/privateNameEmitHelpers.ts", - "./testTs/test/classes/members/privateNames/privateNamesAndkeyof.ts", - "./testTs/test/classes/members/privateNames/privateNameDuplicateField.ts", - "./testTs/test/classes/members/privateNames/privateNamesConstructorChain-1.ts", - "./testTs/test/classes/constructorDeclarations/classConstructorAccessibility3.ts", - "./testTs/test/classes/constructorDeclarations/classConstructorOverloadsAccessibility.ts", - "./testTs/test/classes/constructorDeclarations/classConstructorParametersAccessibility2.ts", - "./testTs/test/classes/constructorDeclarations/classConstructorAccessibility5.ts", - "./testTs/test/classes/constructorDeclarations/classConstructorAccessibility.ts", - "./testTs/test/classes/constructorDeclarations/constructorWithAssignableReturnExpression.ts", - "./testTs/test/classes/constructorDeclarations/classConstructorAccessibility2.ts", - "./testTs/test/classes/constructorDeclarations/classWithTwoConstructorDefinitions.ts", - "./testTs/test/classes/constructorDeclarations/classConstructorParametersAccessibility.ts", - "./testTs/test/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor3.ts", - "./testTs/test/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor.ts", - "./testTs/test/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor2.ts", - "./testTs/test/classes/constructorDeclarations/automaticConstructors/classWithoutExplicitConstructor.ts", - "./testTs/test/classes/constructorDeclarations/constructorParameters/constructorParameterProperties2.ts", - "./testTs/test/classes/constructorDeclarations/constructorParameters/constructorImplementationWithDefaultValues2.ts", - "./testTs/test/classes/constructorDeclarations/constructorParameters/constructorParameterProperties.ts", - "./testTs/test/classes/constructorDeclarations/constructorParameters/constructorDefaultValuesReferencingThis.ts", - "./testTs/test/classes/constructorDeclarations/constructorParameters/readonlyReadonly.ts", - "./testTs/test/classes/constructorDeclarations/constructorParameters/readonlyConstructorAssignment.ts", - "./testTs/test/classes/constructorDeclarations/constructorParameters/constructorOverloadsWithDefaultValues.ts", - "./testTs/test/classes/constructorDeclarations/constructorParameters/readonlyInAmbientClass.ts", - "./testTs/test/classes/constructorDeclarations/constructorParameters/readonlyInConstructorParameters.ts", - "./testTs/test/classes/constructorDeclarations/superCalls/derivedClassSuperCallsInNonConstructorMembers.ts", - "./testTs/test/classes/constructorDeclarations/superCalls/superCallInConstructorWithNoBaseType.ts", - "./testTs/test/classes/constructorDeclarations/superCalls/derivedClassParameterProperties.ts", - "./testTs/test/classes/constructorDeclarations/superCalls/derivedClassConstructorWithoutSuperCall.ts", - "./testTs/test/classes/constructorDeclarations/superCalls/superPropertyInConstructorBeforeSuperCall.ts", - "./testTs/test/classes/constructorDeclarations/superCalls/derivedClassSuperCallsWithThisArg.ts", - "./testTs/test/classes/staticIndexSignature/staticIndexSignature7.ts", - "./testTs/test/classes/staticIndexSignature/staticIndexSignature4.ts", - "./testTs/test/classes/staticIndexSignature/staticIndexSignature3.ts", - "./testTs/test/classes/staticIndexSignature/staticIndexSignature5.ts", - "./testTs/test/classes/staticIndexSignature/staticIndexSignature2.ts", - "./testTs/test/classes/staticIndexSignature/staticIndexSignature1.ts", - "./testTs/test/classes/classDeclarations/declaredClassMergedwithSelf.ts", - "./testTs/test/classes/classDeclarations/classExtendingNonConstructor.ts", - "./testTs/test/classes/classDeclarations/classAndVariableWithSameName.ts", - "./testTs/test/classes/classDeclarations/classAndInterfaceMergeConflictingMembers.ts", - "./testTs/test/classes/classDeclarations/classWithPredefinedTypesAsNames.ts", - "./testTs/test/classes/classDeclarations/classExtendingClassLikeType.ts", - "./testTs/test/classes/classDeclarations/classWithPredefinedTypesAsNames2.ts", - "./testTs/test/classes/classDeclarations/classImplementsMergedClassInterface.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractInstantiations2.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractMixedWithModifiers.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractUsingAbstractMethod1.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractManyKeywords.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractSingleLineDecl.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractConstructor.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractMergedDeclaration.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractMethodWithImplementation.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractInstantiations1.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractOverrideWithAbstract.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractClinterfaceAssignability.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractSuperCalls.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractExtends.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractOverloads.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractFactoryFunction.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractProperties.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractInheritance.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractImportInstantiation.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractUsingAbstractMethods2.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractInAModule.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractMethodInNonAbstractClass.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractGeneric.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractCrashedOnce.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractAccessor.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractAssignabilityConstructorFunction.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractWithInterface.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractDeclarations.d.ts", - "./testTs/test/classes/classDeclarations/classAbstractKeyword/classAbstractConstructorAssignability.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendsValidConstructorFunction.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendingOptionalChain.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendsItselfIndirectly.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendsEveryObjectType2.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendsShadowedConstructorFunction.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classIsSubtypeOfBaseType.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendsItselfIndirectly2.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendsItselfIndirectly3.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendingPrimitive.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendsItself.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendsEveryObjectType.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendingPrimitive2.ts", - "./testTs/test/classes/classDeclarations/classBody/classBodyWithStatements.ts", - "./testTs/test/jsx/jsxUnclosedParserRecovery.ts", - "./testTs/test/references/library-reference-15.ts", - "./testTs/test/references/library-reference-5.ts", - "./testTs/test/es7/trailingCommasInBindingPatterns.ts", - "./testTs/test/es7/trailingCommasInGetter.ts", - "./testTs/test/es7/trailingCommasInFunctionParametersAndArguments.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorInTemplateStringWithSyntaxError3.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithNullValueAndValidOperands.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithNew.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithNullValueAndInvalidOperands.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorSyntaxError1.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithInvalidOperands.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorInTemplateStringWithSyntaxError1.ts", - "./testTs/test/es7/exponentiationOperator/compoundExponentiationAssignmentLHSIsValue.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorSyntaxError2.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithTemplateStringInvalidES6.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithUndefinedValueAndValidOperands.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithUndefinedValueAndInvalidOperands.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithInvalidSimpleUnaryExpressionOperands.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithTypeParameter.ts", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperator4.ts", - "./testTs/test/es7/exponentiationOperator/compoundExponentiationAssignmentLHSCanBeAssigned1.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithTemplateStringInvalid.ts", - "./testTs/test/es7/exponentiationOperator/compoundExponentiationAssignmentLHSCannotBeAssigned.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithOnlyNullValueOrUndefinedValue.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorInTemplateStringWithSyntaxError2.ts", - "./testTs/test/ambient/ambientDeclarationsPatterns_merging2.ts", - "./testTs/test/ambient/ambientExternalModuleInsideNonAmbientExternalModule.ts", - "./testTs/test/ambient/ambientDeclarationsPatterns_tooManyAsterisks.ts", - "./testTs/test/ambient/ambientExternalModuleInsideNonAmbient.ts", - "./testTs/test/ambient/ambientDeclarationsPatterns_merging3.ts", - "./testTs/test/ambient/ambientErrors.ts", - "./testTs/test/ambient/ambientDeclarationsPatterns_merging1.ts", - "./testTs/test/externalModules/moduleResolutionWithoutExtension7.ts", - "./testTs/test/externalModules/moduleResolutionWithoutExtension2.ts", - "./testTs/test/externalModules/exportNonInitializedVariablesES6.ts", - "./testTs/test/externalModules/multipleExportDefault2.ts", - "./testTs/test/externalModules/importNonExternalModule.ts", - "./testTs/test/externalModules/topLevelFileModuleMissing.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.11.ts", - "./testTs/test/externalModules/umd-errors.ts", - "./testTs/test/externalModules/umd8.ts", - "./testTs/test/externalModules/multipleExportDefault1.ts", - "./testTs/test/externalModules/exportClassNameWithObjectAMD.ts", - "./testTs/test/externalModules/moduleResolutionWithoutExtension3.ts", - "./testTs/test/externalModules/exportNonLocalDeclarations.ts", - "./testTs/test/externalModules/circularReference.ts", - "./testTs/test/externalModules/moduleResolutionWithoutExtension4.ts", - "./testTs/test/externalModules/multipleExportDefault6.ts", - "./testTs/test/externalModules/exportNonInitializedVariablesUMD.ts", - "./testTs/test/externalModules/initializersInDeclarations.ts", - "./testTs/test/externalModules/umd5.ts", - "./testTs/test/externalModules/exportAssignmentConstrainedGenericType.ts", - "./testTs/test/externalModules/exportClassNameWithObjectUMD.ts", - "./testTs/test/externalModules/multipleExportDefault5.ts", - "./testTs/test/externalModules/topLevelModuleDeclarationAndFile.ts", - "./testTs/test/externalModules/exportNonInitializedVariablesSystem.ts", - "./testTs/test/externalModules/moduleResolutionWithoutExtension6.ts", - "./testTs/test/externalModules/duplicateExportAssignments.ts", - "./testTs/test/externalModules/multipleExportDefault3.ts", - "./testTs/test/externalModules/importsImplicitlyReadonly.ts", - "./testTs/test/externalModules/moduleResolutionWithoutExtension8.ts", - "./testTs/test/externalModules/importTsBeforeDTs.ts", - "./testTs/test/externalModules/invalidSyntaxNamespaceImportWithCommonjs.ts", - "./testTs/test/externalModules/exportAssignmentAndDeclaration.ts", - "./testTs/test/externalModules/invalidSyntaxNamespaceImportWithAMD.ts", - "./testTs/test/externalModules/relativePathMustResolve.ts", - "./testTs/test/externalModules/moduleResolutionWithoutExtension1.ts", - "./testTs/test/externalModules/exportClassNameWithObjectCommonJS.ts", - "./testTs/test/externalModules/invalidSyntaxNamespaceImportWithSystem.ts", - "./testTs/test/externalModules/exportAssignNonIdentifier.ts", - "./testTs/test/externalModules/typesOnlyExternalModuleStillHasInstance.ts", - "./testTs/test/externalModules/multipleExportDefault4.ts", - "./testTs/test/externalModules/umd2.ts", - "./testTs/test/externalModules/exportNonInitializedVariablesCommonJS.ts", - "./testTs/test/externalModules/importNonStringLiteral.ts", - "./testTs/test/externalModules/exportDefaultClassNameWithObject.ts", - "./testTs/test/externalModules/exportClassNameWithObjectSystem.ts", - "./testTs/test/externalModules/moduleResolutionWithoutExtension5.ts", - "./testTs/test/externalModules/exportNonInitializedVariablesAMD.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target10.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target9.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target10.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target9.ts", - "./testTs/test/externalModules/typeOnly/filterNamespace_import.ts", - "./testTs/test/externalModules/typeOnly/importEqualsDeclaration.ts", - "./testTs/test/externalModules/typeOnly/grammarErrors.ts", - "./testTs/test/externalModules/typeOnly/chained.ts", - "./testTs/test/externalModules/typeOnly/enums.ts", - "./testTs/test/externalModules/typeOnly/exportDefault.ts", - "./testTs/test/externalModules/typeOnly/exportDeclaration_missingBraces.ts", - "./testTs/test/externalModules/typeOnly/importEquals1.ts", - "./testTs/test/externalModules/typeOnly/exportDeclaration.ts", - "./testTs/test/externalModules/typeOnly/importClause_default.ts", - "./testTs/test/externalModules/typeOnly/importEquals3.ts", - "./testTs/test/externalModules/typeOnly/importsNotUsedAsValues_error.ts", - "./testTs/test/externalModules/typeOnly/exportDeclaration_moduleSpecifier.ts", - "./testTs/test/externalModules/typeOnly/chained2.ts", - "./testTs/test/externalModules/typeOnly/importClause_namedImports.ts", - "./testTs/test/externalModules/typeOnly/generic.ts", - "./testTs/test/externalModules/typeOnly/namespaceMemberAccess.ts", - "./testTs/test/externalModules/typeOnly/importSpecifiers1.ts", - "./testTs/test/externalModules/typeOnly/circular3.ts", - "./testTs/test/externalModules/typeOnly/circular4.ts", - "./testTs/test/externalModules/typeOnly/importEquals2.ts", - "./testTs/test/externalModules/typeOnly/computedPropertyName.ts", - "./testTs/test/externalModules/typeOnly/circular2.ts", - "./testTs/test/externalModules/typeOnly/exportNamespace4.ts", - "./testTs/test/externalModules/typeOnly/preserveValueImports_mixedImports.ts", - "./testTs/test/externalModules/typeOnly/exportSpecifiers.ts", - "./testTs/test/externalModules/typeOnly/importClause_namespaceImport.ts", - "./testTs/test/externalModules/typeOnly/namespaceImportTypeQuery.ts", - "./testTs/test/externalModules/typeOnly/circular1.ts", - "./testTs/test/externalModules/typeOnly/exportNamespace2.ts", - "./testTs/test/externalModules/typeOnly/extendsClause.ts", - "./testTs/test/externalModules/typeOnly/exportNamespace1.ts", - "./testTs/test/externalModules/typeOnly/exportNamespace3.ts", - "./testTs/test/externalModules/typeOnly/renamed.ts", - "./testTs/test/es2017/useObjectValuesAndEntries3.ts", - "./testTs/test/es2017/useSharedArrayBuffer6.ts", - "./testTs/test/es2017/useSharedArrayBuffer3.ts", - "./testTs/test/es2017/useObjectValuesAndEntries2.ts", - "./testTs/test/es2017/useSharedArrayBuffer2.ts", - "./testTs/test/async/es2017/await_unaryExpression_es2017_1.ts", - "./testTs/test/async/es2017/await_unaryExpression_es2017_3.ts", - "./testTs/test/async/es2017/asyncAwaitIsolatedModules_es2017.ts", - "./testTs/test/async/es2017/await_unaryExpression_es2017_2.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration7_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration5_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration10_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration3_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration6_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration8_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration12_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration9_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration13_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunction9_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunction10_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunction8_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunction6_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunction7_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunction_allowJs.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunction5_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunction3_es2017.ts", - "./testTs/test/async/es5/asyncSetter_es5.ts", - "./testTs/test/async/es5/asyncDeclare_es5.ts", - "./testTs/test/async/es5/asyncAliasReturnType_es5.ts", - "./testTs/test/async/es5/asyncInterface_es5.ts", - "./testTs/test/async/es5/asyncConstructor_es5.ts", - "./testTs/test/async/es5/asyncModule_es5.ts", - "./testTs/test/async/es5/asyncEnum_es5.ts", - "./testTs/test/async/es5/asyncClass_es5.ts", - "./testTs/test/async/es5/asyncGetter_es5.ts", - "./testTs/test/async/es5/asyncAwaitIsolatedModules_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration10_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration6_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclarationCapturesArguments_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration13_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration12_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration9_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration5_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration8_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration3_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration7_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration15_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunction5_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunction8_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunction10_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunction6_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunction9_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunctionCapturesArguments_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunction7_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunction3_es5.ts", - "./testTs/test/async/es6/asyncClass_es6.ts", - "./testTs/test/async/es6/asyncGetter_es6.ts", - "./testTs/test/async/es6/asyncInterface_es6.ts", - "./testTs/test/async/es6/asyncAwaitIsolatedModules_es6.ts", - "./testTs/test/async/es6/await_unaryExpression_es6_1.ts", - "./testTs/test/async/es6/asyncSetter_es6.ts", - "./testTs/test/async/es6/asyncImportedPromise_es6.ts", - "./testTs/test/async/es6/asyncConstructor_es6.ts", - "./testTs/test/async/es6/asyncDeclare_es6.ts", - "./testTs/test/async/es6/asyncEnum_es6.ts", - "./testTs/test/async/es6/await_unaryExpression_es6_3.ts", - "./testTs/test/async/es6/asyncQualifiedReturnType_es6.ts", - "./testTs/test/async/es6/asyncModule_es6.ts", - "./testTs/test/async/es6/await_unaryExpression_es6_2.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration7_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration3_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncOrYieldAsBindingIdentifier1.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration12_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration15_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration5_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration10_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration6_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration8_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration9_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration13_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunction10_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunction7_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunction6_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunction8_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunction9_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunction3_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunction5_es6.ts", - "./testTs/test/additionalChecks/noPropertyAccessFromIndexSignature1.ts", - "./testTs/test/typings/typingsSuggestion2.ts", - "./testTs/test/typings/typingsSuggestion1.ts", - "./testTs/test/dynamicImport/importCallExpression5ES2020.ts", - "./testTs/test/dynamicImport/importCallExpressionCheckReturntype1.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedES2015.ts", - "./testTs/test/dynamicImport/importCallExpressionNoModuleKindSpecified.ts", - "./testTs/test/dynamicImport/importCallExpressionIncorrect1.ts", - "./testTs/test/dynamicImport/importCallExpressionWithTypeArgument.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedES20152.ts", - "./testTs/test/dynamicImport/importCallExpressionInScriptContext2.ts", - "./testTs/test/dynamicImport/importCallExpressionGrammarError.ts", - "./testTs/test/dynamicImport/importCallExpression6ES2020.ts", - "./testTs/test/dynamicImport/importCallExpressionErrorInES2015.ts", - "./testTs/test/dynamicImport/importCallExpressionSpecifierNotStringTypeError.ts", - "./testTs/test/dynamicImport/importCallExpressionIncorrect2.ts", - "./testTs/test/jsdoc/jsdocReadonly.ts", - "./testTs/test/jsdoc/jsdocOverrideTag1.ts", - "./testTs/test/jsdoc/jsdocOuterTypeParameters3.ts", - "./testTs/test/jsdoc/jsdocPrivateName1.ts", - "./testTs/test/jsdoc/jsdocImplements_class.ts", - "./testTs/test/jsdoc/assertionsAndNonReturningFunctions.ts", - "./testTs/test/jsdoc/jsdocTemplateClass.ts", - "./testTs/test/jsdoc/paramTagWrapping.ts", - "./testTs/test/jsdoc/typeTagPrototypeAssignment.ts", - "./testTs/test/jsdoc/typedefOnStatements.ts", - "./testTs/test/jsdoc/paramTagNestedWithoutTopLevelObject.ts", - "./testTs/test/jsdoc/checkJsdocTypeTag6.ts", - "./testTs/test/jsdoc/checkJsdocReturnTag2.ts", - "./testTs/test/jsdoc/jsdocDisallowedInTypescript.ts", - "./testTs/test/jsdoc/callOfPropertylessConstructorFunction.ts", - "./testTs/test/jsdoc/checkJsdocTypedefOnlySourceFile.ts", - "./testTs/test/jsdoc/jsdocImplements_missingType.ts", - "./testTs/test/jsdoc/jsdocTypeTagParameterType.ts", - "./testTs/test/jsdoc/typedefTagWrapping.ts", - "./testTs/test/jsdoc/jsdocFunction_missingReturn.ts", - "./testTs/test/jsdoc/paramTagNestedWithoutTopLevelObject2.ts", - "./testTs/test/jsdoc/jsdocAugments_nameMismatch.ts", - "./testTs/test/jsdoc/extendsTag2.ts", - "./testTs/test/jsdoc/jsdocPrototypePropertyAccessWithType.ts", - "./testTs/test/jsdoc/extendsTagEmit.ts", - "./testTs/test/jsdoc/errorOnFunctionReturnType.ts", - "./testTs/test/jsdoc/jsdocTypeTagRequiredParameters.ts", - "./testTs/test/jsdoc/jsdocCatchClauseWithTypeAnnotation.ts", - "./testTs/test/jsdoc/typedefScope1.ts", - "./testTs/test/jsdoc/jsdocTemplateTag3.ts", - "./testTs/test/jsdoc/jsdocOuterTypeParameters2.ts", - "./testTs/test/jsdoc/jsdocAugments_errorInExtendsExpression.ts", - "./testTs/test/jsdoc/callbackTag2.ts", - "./testTs/test/jsdoc/syntaxErrors.ts", - "./testTs/test/jsdoc/typedefMultipleTypeParameters.ts", - "./testTs/test/jsdoc/checkExportsObjectAssignProperty.ts", - "./testTs/test/jsdoc/checkJsdocTypeTagOnObjectProperty2.ts", - "./testTs/test/jsdoc/jsdocIndexSignature.ts", - "./testTs/test/jsdoc/jsdocTemplateTagDefault.ts", - "./testTs/test/jsdoc/typeTagNoErasure.ts", - "./testTs/test/jsdoc/checkOtherObjectAssignProperty.ts", - "./testTs/test/jsdoc/checkObjectDefineProperty.ts", - "./testTs/test/jsdoc/typedefTagTypeResolution.ts", - "./testTs/test/jsdoc/jsdocParseErrorsInTypescript.ts", - "./testTs/test/jsdoc/jsdocAugments_notAClass.ts", - "./testTs/test/jsdoc/paramTagNestedWithoutTopLevelObject3.ts", - "./testTs/test/jsdoc/jsdocTemplateConstructorFunction2.ts", - "./testTs/test/jsdoc/constructorTagOnObjectLiteralMethod.ts", - "./testTs/test/jsdoc/checkJsdocOptionalParamOrder.ts", - "./testTs/test/jsdoc/checkJsdocOnEndOfFile.ts", - "./testTs/test/jsdoc/jsdocImplements_properties.ts", - "./testTs/test/jsdoc/typedefCrossModule5.ts", - "./testTs/test/jsdoc/jsdocOuterTypeParameters1.ts", - "./testTs/test/jsdoc/paramTagNestedWithoutTopLevelObject4.ts", - "./testTs/test/jsdoc/jsdocParseDotDotDotInJSDocFunction.ts", - "./testTs/test/jsdoc/noAssertForUnparseableTypedefs.ts", - "./testTs/test/jsdoc/checkJsdocTypeTag1.ts", - "./testTs/test/jsdoc/jsdocTemplateTag.ts", - "./testTs/test/jsdoc/checkJsdocTypeTag5.ts", - "./testTs/test/jsdoc/jsdocPostfixEqualsAddsOptionality.ts", - "./testTs/test/jsdoc/jsdocPrivateName2.ts", - "./testTs/test/jsdoc/jsdocParamTag2.ts", - "./testTs/test/jsdoc/jsdocTypeFromChainedAssignment2.ts", - "./testTs/test/jsdoc/enumTag.ts", - "./testTs/test/jsdoc/jsdocTypeFromChainedAssignment.ts", - "./testTs/test/jsdoc/typedefDuplicateTypeDeclaration.ts", - "./testTs/test/jsdoc/checkJsdocTypeTag2.ts", - "./testTs/test/jsdoc/typedefCrossModule3.ts", - "./testTs/test/jsdoc/typedefCrossModule2.ts", - "./testTs/test/jsdoc/jsdocImplements_interface.ts", - "./testTs/test/jsdoc/jsdocParseBackquotedParamName.ts", - "./testTs/test/jsdoc/noDuplicateJsdoc1.ts", - "./testTs/test/jsdoc/typedefInnerNamepaths.ts", - "./testTs/test/jsdoc/enumTagCircularReference.ts", - "./testTs/test/jsdoc/checkJsdocTypeTag4.ts", - "./testTs/test/jsdoc/jsdocAccessibilityTags.ts", - "./testTs/test/jsdoc/typeTagCircularReferenceOnConstructorFunction.ts", - "./testTs/test/jsdoc/jsdocImplements_signatures.ts", - "./testTs/test/jsdoc/checkExportsObjectAssignPrototypeProperty.ts", - "./testTs/test/jsdoc/extendsTag4.ts", - "./testTs/test/jsdoc/jsdocPrefixPostfixParsing.ts", - "./testTs/test/jsdoc/jsdocTypeTagCast.ts", - "./testTs/test/jsdoc/jsdocTemplateTagNameResolution.ts", - "./testTs/test/jsdoc/jsdocImplements_interface_multiple.ts", - "./testTs/test/jsdoc/typeTagModuleExports.ts", - "./testTs/test/jsdoc/typedefCrossModule4.ts", - "./testTs/test/jsdoc/paramTagOnFunctionUsingArguments.ts", - "./testTs/test/jsdoc/jsdocParamTagTypeLiteral.ts", - "./testTs/test/jsdoc/jsdocFunctionType.ts", - "./testTs/test/jsdoc/jsdocAugmentsMissingType.ts", - "./testTs/test/jsdoc/jsdocTemplateConstructorFunction.ts", - "./testTs/test/jsdoc/jsdocAugments_noExtends.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsCrossfileMerge.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsInterfaces.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignedConstructorFunctionWithSub.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsTypeReferences4.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsTypeReassignmentFromDeclaration2.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsParameterTagReusesInputNodeInEmit1.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsDefaultsErr.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsClassLikeHeuristic.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportFormsErr.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsClassesErr.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsEnums.ts", - "./testTs/test/override/override15.ts", - "./testTs/test/override/override_js2.ts", - "./testTs/test/override/overrideWithoutNoImplicitOverride1.ts", - "./testTs/test/override/override11.ts", - "./testTs/test/override/override_js4.ts", - "./testTs/test/override/overrideKeywordOrder.ts", - "./testTs/test/override/override4.ts", - "./testTs/test/override/override1.ts", - "./testTs/test/override/override20.ts", - "./testTs/test/override/override7.ts", - "./testTs/test/override/override3.ts", - "./testTs/test/override/overrideParameterProperty.ts", - "./testTs/test/override/override13.ts", - "./testTs/test/override/override6.ts", - "./testTs/test/override/override8.ts", - "./testTs/test/override/override9.ts", - "./testTs/test/override/override19.ts", - "./testTs/test/override/override_js3.ts", - "./testTs/test/override/override2.ts", - "./testTs/test/override/override5.ts", - "./testTs/test/es2019/globalThisPropertyAssignment.ts", - "./testTs/test/es2019/globalThisCollision.ts", - "./testTs/test/es2019/globalThisBlockscopedProperties.ts", - "./testTs/test/es2019/globalThisGlobalExportAsGlobal.ts", - "./testTs/test/es2019/globalThisVarDeclaration.ts", - "./testTs/test/es2019/globalThisReadonlyProperties.ts", - "./testTs/test/es2019/globalThisUnknownNoImplicitAny.ts", - "./testTs/test/es2019/globalThisUnknown.ts", - "./testTs/test/directives/ts-expect-error.ts", - "./testTs/test/directives/ts-expect-error-js.ts", - "./testTs/test/directives/ts-ignore.ts", - "./testTs/test/expressions/conditonalOperator/conditionalOperatorWithoutIdenticalBCT.ts", - "./testTs/test/expressions/conditonalOperator/conditionalOperatorConditionIsObjectType.ts", - "./testTs/test/expressions/objectLiterals/objectLiteralGettersAndSetters.ts", - "./testTs/test/expressions/objectLiterals/objectLiteralErrorsES3.ts", - "./testTs/test/expressions/objectLiterals/objectLiteralNormalization.ts", - "./testTs/test/expressions/objectLiterals/objectLiteralErrors.ts", - "./testTs/test/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts", - "./testTs/test/expressions/typeGuards/typeGuardInClass.ts", - "./testTs/test/expressions/typeGuards/typePredicateOnVariableDeclaration02.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormThisMemberErrors.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormTypeOfOther.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormTypeOfEqualEqualHasNoEffect.ts", - "./testTs/test/expressions/typeGuards/typeGuardsWithInstanceOf.ts", - "./testTs/test/expressions/typeGuards/typeGuardsWithAny.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormTypeOfNotEqualHasNoEffect.ts", - "./testTs/test/expressions/typeGuards/typeGuardFunctionErrors.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormThisMember.ts", - "./testTs/test/expressions/typeGuards/typeGuardFunctionOfFormThisErrors.ts", - "./testTs/test/expressions/typeGuards/typeGuardsDefeat.ts", - "./testTs/test/expressions/typeGuards/typePredicateOnVariableDeclaration01.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInIfStatement.ts", - "./testTs/test/expressions/commaOperator/commaOperatorOtherInvalidOperation.ts", - "./testTs/test/expressions/commaOperator/commaOperatorWithoutOperand.ts", - "./testTs/test/expressions/commaOperator/commaOperatorInvalidAssignmentType.ts", - "./testTs/test/expressions/valuesAndReferences/assignments.ts", - "./testTs/test/expressions/valuesAndReferences/assignmentToParenthesizedIdentifiers.ts", - "./testTs/test/expressions/thisKeyword/typeOfThisGeneral.ts", - "./testTs/test/expressions/thisKeyword/thisInInvalidContexts.ts", - "./testTs/test/expressions/thisKeyword/thisInInvalidContextsExternalModule.ts", - "./testTs/test/expressions/thisKeyword/thisInObjectLiterals.ts", - "./testTs/test/expressions/thisKeyword/typeOfThisInConstructorParamList.ts", - "./testTs/test/expressions/asOperator/asOperatorAmbiguity.ts", - "./testTs/test/expressions/asOperator/asOperator2.ts", - "./testTs/test/expressions/asOperator/asOperatorContextualType.ts", - "./testTs/test/expressions/asOperator/asOperatorNames.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator4.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator5.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator11.ts", - "./testTs/test/expressions/binaryOperators/additionOperator/additionOperatorWithInvalidOperands.ts", - "./testTs/test/expressions/binaryOperators/additionOperator/additionOperatorWithNullValueAndValidOperator.ts", - "./testTs/test/expressions/binaryOperators/additionOperator/additionOperatorWithTypeParameter.ts", - "./testTs/test/expressions/binaryOperators/additionOperator/additionOperatorWithNullValueAndInvalidOperator.ts", - "./testTs/test/expressions/binaryOperators/additionOperator/additionOperatorWithOnlyNullValueOrUndefinedValue.ts", - "./testTs/test/expressions/binaryOperators/additionOperator/additionOperatorWithUndefinedValueAndInvalidOperands.ts", - "./testTs/test/expressions/binaryOperators/additionOperator/additionOperatorWithUndefinedValueAndValidOperator.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipPrimitiveType.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIdenticalPrimitiveType.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnProperty.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnCallSignature.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipTypeParameter.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithTypeParameter.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnIndexSignature.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIntersectionType.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnConstructorSignature.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithOneOperandIsNull.ts", - "./testTs/test/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithInvalidOperands.ts", - "./testTs/test/expressions/binaryOperators/logicalOrOperator/logicalOrOperatorWithEveryType.ts", - "./testTs/test/expressions/binaryOperators/logicalOrOperator/logicalOrExpressionIsContextuallyTyped.ts", - "./testTs/test/expressions/binaryOperators/logicalAndOperator/logicalAndOperatorWithEveryType.ts", - "./testTs/test/expressions/binaryOperators/logicalAndOperator/logicalAndOperatorStrictMode.ts", - "./testTs/test/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithUndefinedValueAndInvalidOperands.ts", - "./testTs/test/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithOnlyNullValueOrUndefinedValue.ts", - "./testTs/test/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithUndefinedValueAndValidOperands.ts", - "./testTs/test/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithTypeParameter.ts", - "./testTs/test/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithInvalidOperands.ts", - "./testTs/test/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithNullValueAndInvalidOperands.ts", - "./testTs/test/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithNullValueAndValidOperands.ts", - "./testTs/test/expressions/binaryOperators/inOperator/inOperatorWithInvalidOperands.ts", - "./testTs/test/expressions/arrayLiterals/arrayLiterals3.ts", - "./testTs/test/expressions/arrayLiterals/arrayLiterals.ts", - "./testTs/test/expressions/assignmentOperator/compoundAssignmentLHSIsValue.ts", - "./testTs/test/expressions/assignmentOperator/compoundAdditionAssignmentLHSCannotBeAssigned.ts", - "./testTs/test/expressions/assignmentOperator/assignmentLHSIsValue.ts", - "./testTs/test/expressions/assignmentOperator/compoundAdditionAssignmentWithInvalidOperands.ts", - "./testTs/test/expressions/assignmentOperator/compoundArithmeticAssignmentWithInvalidOperands.ts", - "./testTs/test/expressions/assignmentOperator/compoundAdditionAssignmentLHSCanBeAssigned.ts", - "./testTs/test/expressions/assignmentOperator/compoundArithmeticAssignmentLHSCanBeAssigned.ts", - "./testTs/test/expressions/unaryOperators/decrementOperator/decrementOperatorWithUnsupportedBooleanType.ts", - "./testTs/test/expressions/unaryOperators/decrementOperator/decrementOperatorWithAnyOtherTypeInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/decrementOperator/decrementOperatorWithEnumTypeInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/decrementOperator/decrementOperatorWithEnumType.ts", - "./testTs/test/expressions/unaryOperators/decrementOperator/decrementOperatorWithUnsupportedStringType.ts", - "./testTs/test/expressions/unaryOperators/decrementOperator/decrementOperatorWithNumberTypeInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/plusOperator/plusOperatorWithAnyOtherType.ts", - "./testTs/test/expressions/unaryOperators/plusOperator/plusOperatorInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/plusOperator/plusOperatorWithEnumType.ts", - "./testTs/test/expressions/unaryOperators/plusOperator/plusOperatorWithNumberType.ts", - "./testTs/test/expressions/unaryOperators/plusOperator/plusOperatorWithStringType.ts", - "./testTs/test/expressions/unaryOperators/plusOperator/plusOperatorWithBooleanType.ts", - "./testTs/test/expressions/unaryOperators/deleteOperator/deleteOperatorWithNumberType.ts", - "./testTs/test/expressions/unaryOperators/deleteOperator/deleteOperatorWithEnumType.ts", - "./testTs/test/expressions/unaryOperators/deleteOperator/deleteOperatorWithBooleanType.ts", - "./testTs/test/expressions/unaryOperators/deleteOperator/deleteOperatorWithAnyOtherType.ts", - "./testTs/test/expressions/unaryOperators/deleteOperator/deleteOperatorInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/deleteOperator/deleteOperatorWithStringType.ts", - "./testTs/test/expressions/unaryOperators/incrementOperator/incrementOperatorWithUnsupportedStringType.ts", - "./testTs/test/expressions/unaryOperators/incrementOperator/incrementOperatorWithEnumType.ts", - "./testTs/test/expressions/unaryOperators/incrementOperator/incrementOperatorWithEnumTypeInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/incrementOperator/incrementOperatorWithUnsupportedBooleanType.ts", - "./testTs/test/expressions/unaryOperators/incrementOperator/incrementOperatorWithAnyOtherTypeInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/incrementOperator/incrementOperatorWithNumberTypeInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/typeofOperator/typeofOperatorWithBooleanType.ts", - "./testTs/test/expressions/unaryOperators/typeofOperator/typeofOperatorWithStringType.ts", - "./testTs/test/expressions/unaryOperators/typeofOperator/typeofOperatorWithEnumType.ts", - "./testTs/test/expressions/unaryOperators/typeofOperator/typeofOperatorInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/typeofOperator/typeofOperatorWithAnyOtherType.ts", - "./testTs/test/expressions/unaryOperators/typeofOperator/typeofOperatorWithNumberType.ts", - "./testTs/test/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithAnyOtherType.ts", - "./testTs/test/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithAnyOtherType.ts", - "./testTs/test/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithStringType.ts", - "./testTs/test/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithEnumType.ts", - "./testTs/test/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithBooleanType.ts", - "./testTs/test/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithNumberType.ts", - "./testTs/test/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/voidOperator/voidOperatorInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/voidOperator/voidOperatorWithAnyOtherType.ts", - "./testTs/test/expressions/unaryOperators/negateOperator/negateOperatorWithEnumType.ts", - "./testTs/test/expressions/unaryOperators/negateOperator/negateOperatorWithStringType.ts", - "./testTs/test/expressions/unaryOperators/negateOperator/negateOperatorWithBooleanType.ts", - "./testTs/test/expressions/unaryOperators/negateOperator/negateOperatorWithNumberType.ts", - "./testTs/test/expressions/unaryOperators/negateOperator/negateOperatorInvalidOperations.ts", - "./testTs/test/expressions/unaryOperators/negateOperator/negateOperatorWithAnyOtherType.ts", - "./testTs/test/expressions/identifiers/scopeResolutionIdentifiers.ts", - "./testTs/test/expressions/optionalChaining/propertyAccessChain/propertyAccessChain.3.ts", - "./testTs/test/expressions/optionalChaining/delete/deleteChain.ts", - "./testTs/test/expressions/optionalChaining/privateIdentifierChain/privateIdentifierChain.1.ts", - "./testTs/test/expressions/optionalChaining/callChain/callChain.3.ts", - "./testTs/test/expressions/optionalChaining/elementAccessChain/elementAccessChain.3.ts", - "./testTs/test/expressions/optionalChaining/taggedTemplateChain/taggedTemplateChain.ts", - "./testTs/test/expressions/functionCalls/forgottenNew.ts", - "./testTs/test/expressions/functionCalls/grammarAmbiguities.ts", - "./testTs/test/expressions/functionCalls/callWithSpread2.ts", - "./testTs/test/expressions/functionCalls/callOverload.ts", - "./testTs/test/expressions/functionCalls/typeArgumentInference.ts", - "./testTs/test/expressions/functionCalls/typeArgumentInferenceWithConstraints.ts", - "./testTs/test/expressions/functionCalls/overloadResolutionConstructors.ts", - "./testTs/test/expressions/functionCalls/typeArgumentInferenceConstructSignatures.ts", - "./testTs/test/expressions/functionCalls/callWithSpread4.ts", - "./testTs/test/expressions/functionCalls/functionCalls.ts", - "./testTs/test/expressions/functionCalls/newWithSpread.ts", - "./testTs/test/expressions/functionCalls/callWithSpread5.ts", - "./testTs/test/expressions/functionCalls/typeArgumentInferenceWithObjectLiteral.ts", - "./testTs/test/expressions/functionCalls/overloadResolution.ts", - "./testTs/test/expressions/functionCalls/callWithSpread3.ts", - "./testTs/test/expressions/functionCalls/callWithMissingVoid.ts", - "./testTs/test/expressions/functionCalls/typeArgumentInferenceErrors.ts", - "./testTs/test/expressions/functionCalls/overloadResolutionClassConstructors.ts", - "./testTs/test/expressions/superPropertyAccess/errorSuperPropertyAccess.ts", - "./testTs/test/expressions/superPropertyAccess/superSymbolIndexedAccess4.ts", - "./testTs/test/expressions/superPropertyAccess/superSymbolIndexedAccess3.ts", - "./testTs/test/expressions/propertyAccess/propertyAccessWidening.ts", - "./testTs/test/expressions/propertyAccess/propertyAccess.ts", - "./testTs/test/expressions/propertyAccess/propertyAccessStringIndexSignature.ts", - "./testTs/test/expressions/propertyAccess/propertyAccessStringIndexSignatureNoImplicitAny.ts", - "./testTs/test/expressions/functions/contextuallyTypedIifeStrict.ts", - "./testTs/test/expressions/functions/arrowFunctionContexts.ts", - "./testTs/test/expressions/typeAssertions/duplicatePropertiesInTypeAssertions02.ts", - "./testTs/test/expressions/typeAssertions/duplicatePropertiesInTypeAssertions01.ts", - "./testTs/test/expressions/typeAssertions/constAssertions.ts", - "./testTs/test/expressions/typeAssertions/typeAssertions.ts", - "./testTs/test/expressions/superCalls/errorSuperCalls.ts", - "./testTs/test/expressions/literals/literals.ts", - "./testTs/test/expressions/newOperator/newOperatorErrorCases_noImplicitAny.ts", - "./testTs/test/expressions/newOperator/newOperatorErrorCases.ts", - "./testTs/test/expressions/contextualTyping/arrayLiteralExpressionContextualTyping.ts", - "./testTs/test/expressions/contextualTyping/functionExpressionContextualTyping2.ts", - "./testTs/test/expressions/contextualTyping/superCallParameterContextualTyping2.ts", - "./testTs/test/expressions/contextualTyping/getSetAccessorContextualTyping.ts", - "./testTs/test/expressions/contextualTyping/objectLiteralContextualTyping.ts", - "./testTs/test/expressions/contextualTyping/parenthesizedContexualTyping1.ts", - "./testTs/test/expressions/contextualTyping/argumentExpressionContextualTyping.ts", - "./testTs/test/expressions/contextualTyping/parenthesizedContexualTyping2.ts", - "./testTs/test/expressions/operators/incrementAndDecrement.ts", - "./testTs/test/declarationEmit/typesVersionsDeclarationEmit.multiFileBackReferenceToSelf.ts", - "./testTs/test/declarationEmit/typePredicates/declarationEmitThisPredicatesWithPrivateName02.ts", - "./testTs/test/declarationEmit/typePredicates/declarationEmitThisPredicates02.ts", - "./testTs/test/decorators/decoratorCallGeneric.ts", - "./testTs/test/decorators/decoratorMetadata-jsdoc.ts", - "./testTs/test/decorators/missingDecoratorType.ts", - "./testTs/test/decorators/class/decoratorChecksFunctionBodies.ts", - "./testTs/test/decorators/class/decoratorOnClass3.ts", - "./testTs/test/decorators/class/decoratorOnClass8.ts", - "./testTs/test/decorators/class/constructableDecoratorOnClass01.ts", - "./testTs/test/decorators/class/constructor/decoratorOnClassConstructor1.ts", - "./testTs/test/decorators/class/constructor/decoratorOnClassConstructor2.ts", - "./testTs/test/decorators/class/constructor/parameter/decoratorOnClassConstructorParameter4.ts", - "./testTs/test/decorators/class/accessor/decoratorOnClassAccessor3.ts", - "./testTs/test/decorators/class/accessor/decoratorOnClassAccessor6.ts", - "./testTs/test/decorators/class/accessor/decoratorOnClassAccessor7.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethodOverload1.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod8.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod12.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod10.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod11.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod6.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod17.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod3.ts", - "./testTs/test/decorators/class/method/parameter/decoratorOnClassMethodThisParameter.ts", - "./testTs/test/decorators/class/property/decoratorOnClassProperty11.ts", - "./testTs/test/decorators/class/property/decoratorOnClassProperty6.ts", - "./testTs/test/decorators/class/property/decoratorOnClassProperty7.ts", - "./testTs/test/decorators/class/property/decoratorOnClassProperty3.ts", - "./testTs/test/decorators/invalid/decoratorOnImportEquals1.ts", - "./testTs/test/decorators/invalid/decoratorOnFunctionParameter.ts", - "./testTs/test/decorators/invalid/decoratorOnImportEquals2.ts", - "./testTs/test/decorators/invalid/decoratorOnFunctionExpression.ts", - "./testTs/test/decorators/invalid/decoratorOnVar.ts", - "./testTs/test/decorators/invalid/decoratorOnEnum2.ts", - "./testTs/test/decorators/invalid/decoratorOnArrowFunction.ts", - "./testTs/test/decorators/invalid/decoratorOnFunctionDeclaration.ts", - "./testTs/test/decorators/invalid/decoratorOnEnum.ts", - "./testTs/test/decorators/invalid/decoratorOnInterface.ts", - "./testTs/test/decorators/invalid/decoratorOnTypeAlias.ts", - "./testTs/test/decorators/invalid/decoratorOnInternalModule.ts", - "./testTs/test/interfaces/declarationMerging/mergedInterfacesWithIndexers2.ts", - "./testTs/test/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates3.ts", - "./testTs/test/interfaces/declarationMerging/twoGenericInterfacesDifferingByTypeParameterName.ts", - "./testTs/test/interfaces/declarationMerging/twoGenericInterfacesWithTheSameNameButDifferentArity.ts", - "./testTs/test/interfaces/declarationMerging/genericAndNonGenericInterfaceWithTheSameName.ts", - "./testTs/test/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates.ts", - "./testTs/test/interfaces/declarationMerging/mergedInheritedMembersSatisfyAbstractBase.ts", - "./testTs/test/interfaces/declarationMerging/twoGenericInterfacesDifferingByTypeParameterName2.ts", - "./testTs/test/interfaces/declarationMerging/mergedInterfacesWithConflictingPropertyNames.ts", - "./testTs/test/interfaces/declarationMerging/twoInterfacesDifferentRootModule.ts", - "./testTs/test/interfaces/declarationMerging/twoInterfacesDifferentRootModule2.ts", - "./testTs/test/interfaces/declarationMerging/twoGenericInterfacesWithDifferentConstraints.ts", - "./testTs/test/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates2.ts", - "./testTs/test/interfaces/declarationMerging/mergedInterfacesWithMultipleBases4.ts", - "./testTs/test/interfaces/interfacesExtendingClasses/implementingAnInterfaceExtendingClassWithPrivates.ts", - "./testTs/test/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithPrivates2.ts", - "./testTs/test/interfaces/interfacesExtendingClasses/implementingAnInterfaceExtendingClassWithPrivates2.ts", - "./testTs/test/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithPrivates.ts", - "./testTs/test/interfaces/interfacesExtendingClasses/interfaceExtendingClass2.ts", - "./testTs/test/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithProtecteds2.ts", - "./testTs/test/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithProtecteds.ts", - "./testTs/test/interfaces/interfacesExtendingClasses/implementingAnInterfaceExtendingClassWithProtecteds.ts", - "./testTs/test/interfaces/interfacesExtendingClasses/interfaceExtendingClass.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceThatIndirectlyInheritsFromItself.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithPropertyThatIsPrivateInBaseType.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceExtendingOptionalChain.ts", - "./testTs/test/interfaces/interfaceDeclarations/derivedInterfaceIncompatibleWithBaseIndexer.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithStringIndexerHidingBaseTypeIndexer.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithAccessibilityModifiers.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceThatHidesBaseProperty2.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceExtendsObjectIntersectionErrors.ts", - "./testTs/test/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface05.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithPropertyThatIsPrivateInBaseType2.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithMultipleBaseTypes.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithStringIndexerHidingBaseTypeIndexer3.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithStringIndexerHidingBaseTypeIndexer2.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfacesWithPredefinedTypesAsNames.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithMultipleBaseTypes2.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceThatInheritsFromItself.ts", - "./testTs/test/moduleResolution/declarationNotFoundPackageBundlesTypes.ts", - "./testTs/test/moduleResolution/untypedModuleImport_noImplicitAny.ts", - "./testTs/test/moduleResolution/untypedModuleImport_noImplicitAny_relativePath.ts", - "./testTs/test/moduleResolution/untypedModuleImport_withAugmentation.ts", - "./testTs/test/moduleResolution/packageJsonMain_isNonRecursive.ts", - "./testTs/test/moduleResolution/untypedModuleImport_noImplicitAny_scoped.ts", - "./testTs/test/moduleResolution/untypedModuleImport_noImplicitAny_typesForPackageExist.ts", - "./testTs/test/parser/ecmascript2018/forAwait/parser.forAwait.es2018.ts", - "./testTs/test/parser/ecmascript2018/asyncGenerators/parser.asyncGenerators.functionExpressions.es2018.ts", - "./testTs/test/parser/ecmascript2018/asyncGenerators/parser.asyncGenerators.classMethods.es2018.ts", - "./testTs/test/parser/ecmascript2018/asyncGenerators/parser.asyncGenerators.functionDeclarations.es2018.ts", - "./testTs/test/parser/ecmascript2018/asyncGenerators/parser.asyncGenerators.objectLiteralMethods.es2018.ts", - "./testTs/test/parser/ecmascript2021/numericSeparators/parser.numericSeparators.decmialNegative.ts", - "./testTs/test/parser/ecmascript2021/numericSeparators/parser.numericSeparators.unicodeEscape.ts", - "./testTs/test/parser/ecmascript2021/numericSeparators/parser.numericSeparators.octalNegative.ts", - "./testTs/test/parser/ecmascript2021/numericSeparators/parser.numericSeparators.binaryNegative.ts", - "./testTs/test/parser/ecmascript2021/numericSeparators/parser.numericSeparators.hexNegative.ts", - "./testTs/test/parser/ecmascript3/Accessors/parserES3Accessors2.ts", - "./testTs/test/parser/ecmascript3/Accessors/parserES3Accessors4.ts", - "./testTs/test/parser/ecmascript3/Accessors/parserES3Accessors1.ts", - "./testTs/test/parser/ecmascript3/Accessors/parserES3Accessors3.ts", - "./testTs/test/parser/ecmascript5/parserUnicode1.ts", - "./testTs/test/parser/ecmascript5/parserS7.2_A1.5_T2.ts", - "./testTs/test/parser/ecmascript5/parser10.1.1-8gs.ts", - "./testTs/test/parser/ecmascript5/parserRealSource13.ts", - "./testTs/test/parser/ecmascript5/parserRealSource10.ts", - "./testTs/test/parser/ecmascript5/parserS12.11_A3_T4.ts", - "./testTs/test/parser/ecmascript5/parserUsingConstructorAsIdentifier.ts", - "./testTs/test/parser/ecmascript5/parserObjectCreationArrayLiteral1.ts", - "./testTs/test/parser/ecmascript5/parserS7.9_A5.7_T1.ts", - "./testTs/test/parser/ecmascript5/parserRealSource7.ts", - "./testTs/test/parser/ecmascript5/parserNotRegex1.ts", - "./testTs/test/parser/ecmascript5/parserObjectCreationArrayLiteral2.ts", - "./testTs/test/parser/ecmascript5/parservoidInQualifiedName1.ts", - "./testTs/test/parser/ecmascript5/parserRealSource4.ts", - "./testTs/test/parser/ecmascript5/parservoidInQualifiedName2.ts", - "./testTs/test/parser/ecmascript5/parserRealSource2.ts", - "./testTs/test/parser/ecmascript5/parserRealSource8.ts", - "./testTs/test/parser/ecmascript5/parserImportDeclaration1.ts", - "./testTs/test/parser/ecmascript5/parserRealSource12.ts", - "./testTs/test/parser/ecmascript5/parserArgumentList1.ts", - "./testTs/test/parser/ecmascript5/parserObjectCreationArrayLiteral3.ts", - "./testTs/test/parser/ecmascript5/parserKeywordsAsIdentifierName2.ts", - "./testTs/test/parser/ecmascript5/parserRealSource6.ts", - "./testTs/test/parser/ecmascript5/parserNoASIOnCallAfterFunctionExpression1.ts", - "./testTs/test/parser/ecmascript5/parserRealSource5.ts", - "./testTs/test/parser/ecmascript5/parser15.4.4.14-9-2.ts", - "./testTs/test/parser/ecmascript5/parserRealSource9.ts", - "./testTs/test/parser/ecmascript5/parserRealSource1.ts", - "./testTs/test/parser/ecmascript5/parserAdditiveExpression1.ts", - "./testTs/test/parser/ecmascript5/parserObjectCreationArrayLiteral4.ts", - "./testTs/test/parser/ecmascript5/parserRealSource11.ts", - "./testTs/test/parser/ecmascript5/parserRealSource3.ts", - "./testTs/test/parser/ecmascript5/parserRealSource14.ts", - "./testTs/test/parser/ecmascript5/parserAstSpans1.ts", - "./testTs/test/parser/ecmascript5/parserS7.6_A4.2_T1.ts", - "./testTs/test/parser/ecmascript5/parserS7.3_A1.1_T2.ts", - "./testTs/test/parser/ecmascript5/TupleTypes/TupleType6.ts", - "./testTs/test/parser/ecmascript5/TupleTypes/TupleType4.ts", - "./testTs/test/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration3.ts", - "./testTs/test/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration4.ts", - "./testTs/test/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration2.ts", - "./testTs/test/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration1.ts", - "./testTs/test/parser/ecmascript5/ObjectTypes/parserObjectType5.ts", - "./testTs/test/parser/ecmascript5/ObjectTypes/parserObjectType6.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserErrantAccessibilityModifierInModule1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserErrantEqualsGreaterThanAfterFunction2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserPublicBreak1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserUnfinishedTypeNameBeforeKeyword1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserModifierOnPropertySignature1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserMissingLambdaOpenBrace1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserCommaInTypeMemberList2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserStatementIsNotAMemberVariableDeclaration1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock4.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserErrantEqualsGreaterThanAfterFunction1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserEqualsGreaterThanAfterFunction2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserEmptyParenthesizedExpression1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserEqualsGreaterThanAfterFunction1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserErrantSemicolonInClass1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserFuzz1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause4.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause5.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause6.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/SourceUnits/parserErrorRecovery_SourceUnit1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/SwitchStatements/parserErrorRecovery_SwitchStatement2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/SwitchStatements/parserErrorRecovery_SwitchStatement1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArrayLiteralExpressions/parserErrorRecoveryArrayLiteralExpression2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArrayLiteralExpressions/parserErrorRecoveryArrayLiteralExpression1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArrayLiteralExpressions/parserErrorRecoveryArrayLiteralExpression3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic10.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic7.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic6.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList4.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList7.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList6.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ClassElements/parserErrorRecovery_ClassElement3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ClassElements/parserErrorRecovery_ClassElement1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ClassElements/parserErrorRecovery_ClassElement2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement6.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement4.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement5.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/Blocks/parserErrorRecovery_Block1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/Blocks/parserErrorRecovery_Block3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/Blocks/parserErrorRecovery_Block2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/IncompleteMemberVariables/parserErrorRecovery_IncompleteMemberVariable2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ParameterLists/parserErrorRecovery_ParameterList5.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ParameterLists/parserErrorRecovery_ParameterList2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ParameterLists/parserErrorRecovery_ParameterList4.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ParameterLists/parserErrorRecovery_ParameterList1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ParameterLists/parserErrorRecovery_ParameterList6.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/VariableLists/parserInvalidIdentifiersInVariableStatements1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/VariableLists/parserErrorRecovery_VariableList1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ObjectLiterals/parserErrorRecovery_ObjectLiteral2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ObjectLiterals/parserErrorRecovery_ObjectLiteral3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ObjectLiterals/parserErrorRecovery_ObjectLiteral4.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ObjectLiterals/parserErrorRecovery_ObjectLiteral1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ObjectLiterals/parserErrorRecovery_ObjectLiteral5.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArrowFunctions/ArrowFunction1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArrowFunctions/parserX_ArrowFunction1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArrowFunctions/ArrowFunction3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArrowFunctions/parserX_ArrowFunction3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/LeftShifts/parserErrorRecovery_LeftShift1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ModuleElements/parserErrorRecovery_ModuleElement2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ModuleElements/parserErrorRecovery_ModuleElement1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/Expressions/parserErrorRecovery_Expression1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/TypeArgumentLists/parserX_TypeArgumentList1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/TypeArgumentLists/TypeArgumentList1.ts", - "./testTs/test/parser/ecmascript5/MissingTokens/parserMissingToken1.ts", - "./testTs/test/parser/ecmascript5/MissingTokens/parserMissingToken2.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration4.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration6.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClass2.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration2.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration10.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration18.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration7.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration13.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration1.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration25.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration15.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration24.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration14.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration21.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration11.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClass1.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration12.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration8.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration3.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration22.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration9.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration5.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode9.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode13.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode15.ts", - "./testTs/test/parser/ecmascript5/StrictMode/octalLiteralInStrictModeES3.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode4.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode16.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode10.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode6-negative.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode14.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode12.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode2.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode15-negative.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode7.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode3-negative.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode11.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode8.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode5.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode3.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode1.ts", - "./testTs/test/parser/ecmascript5/StrictMode/parserStrictMode6.ts", - "./testTs/test/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration3.ts", - "./testTs/test/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration4.ts", - "./testTs/test/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration8.ts", - "./testTs/test/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration6.ts", - "./testTs/test/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration7.ts", - "./testTs/test/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration11.ts", - "./testTs/test/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration9.ts", - "./testTs/test/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration10.ts", - "./testTs/test/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration2.ts", - "./testTs/test/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration9.ts", - "./testTs/test/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration7.ts", - "./testTs/test/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration5.ts", - "./testTs/test/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration8.ts", - "./testTs/test/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration10.ts", - "./testTs/test/parser/ecmascript5/IndexSignatures/parserIndexSignature8.ts", - "./testTs/test/parser/ecmascript5/IndexSignatures/parserIndexSignature7.ts", - "./testTs/test/parser/ecmascript5/IndexSignatures/parserIndexSignature1.ts", - "./testTs/test/parser/ecmascript5/IndexSignatures/parserIndexSignature10.ts", - "./testTs/test/parser/ecmascript5/IndexSignatures/parserIndexSignature4.ts", - "./testTs/test/parser/ecmascript5/IndexSignatures/parserIndexSignature3.ts", - "./testTs/test/parser/ecmascript5/IndexSignatures/parserIndexSignature11.ts", - "./testTs/test/parser/ecmascript5/IndexSignatures/parserIndexSignature2.ts", - "./testTs/test/parser/ecmascript5/IndexSignatures/parserIndexSignature9.ts", - "./testTs/test/parser/ecmascript5/IndexSignatures/parserIndexSignature6.ts", - "./testTs/test/parser/ecmascript5/IndexSignatures/parserIndexSignature5.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration3.d.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnum7.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnum4.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnum5.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration2.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration4.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity2.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity3.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity5.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpression5.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity1.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpression3.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpression2.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity4.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpression4.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity7.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpression1.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parseRegularExpressionMixedWithComments.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens2.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens14.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens10.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens16.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens9.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens1.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens17.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens12.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens19.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens18.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens6.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens11.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens5.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens20.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens13.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens7.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens8.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens3.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens4.ts", - "./testTs/test/parser/ecmascript5/SkippedTokens/parserSkippedTokens15.ts", - "./testTs/test/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName8.ts", - "./testTs/test/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName1.ts", - "./testTs/test/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName2.ts", - "./testTs/test/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName5.ts", - "./testTs/test/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName7.ts", - "./testTs/test/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName9.ts", - "./testTs/test/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName6.ts", - "./testTs/test/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName3.ts", - "./testTs/test/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName4.ts", - "./testTs/test/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName10.ts", - "./testTs/test/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName11.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser509669.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser509630.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser566700.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser512325.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser509693.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser509667.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser642331_1.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser645086_1.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser618973.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser509618.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser553699.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser521128.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser512097.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser509668.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser536727.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser642331.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser509534.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser645086_2.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser519458.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser509698.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser512084.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser585151.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parserTernaryAndCommaOperators1.ts", - "./testTs/test/parser/ecmascript5/Protected/Protected1.ts", - "./testTs/test/parser/ecmascript5/Protected/Protected7.ts", - "./testTs/test/parser/ecmascript5/Protected/Protected4.ts", - "./testTs/test/parser/ecmascript5/Protected/Protected2.ts", - "./testTs/test/parser/ecmascript5/Protected/Protected6.ts", - "./testTs/test/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration2.ts", - "./testTs/test/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration1.ts", - "./testTs/test/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration3.ts", - "./testTs/test/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclarationAmbiguities1.ts", - "./testTs/test/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration5.ts", - "./testTs/test/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration4.ts", - "./testTs/test/parser/ecmascript5/Fuzz/parser0_004152.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration6.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration1.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration8.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration5.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration3.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration2.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration10.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration4.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserAccessors9.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserSetAccessorWithTypeParameters1.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserAccessors5.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserAccessors1.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserAccessors6.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserAccessors7.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserGetAccessorWithTypeParameters1.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserAccessors10.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserSetAccessorWithTypeAnnotation1.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserAccessors8.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserAccessors3.ts", - "./testTs/test/parser/ecmascript5/RealWorld/parserharness.ts", - "./testTs/test/parser/ecmascript5/RealWorld/parserindenter.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration15.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration14.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration9.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration16.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration13.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration3.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration10.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration12.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration7.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration18.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration2.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration1.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration17.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration8.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessor1.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration11.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration4.d.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration2.d.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration5.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration1.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration3.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration10.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration1.d.ts", - "./testTs/test/parser/ecmascript5/SuperExpressions/parserSuperExpression1.ts", - "./testTs/test/parser/ecmascript5/SuperExpressions/parserSuperExpression2.ts", - "./testTs/test/parser/ecmascript5/SuperExpressions/parserSuperExpression3.ts", - "./testTs/test/parser/ecmascript5/SuperExpressions/parserSuperExpression4.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList1.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList5.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList2.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList7.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList8.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList17.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList13.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList10.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList9.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList11.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList16.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList14.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList3.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList4.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList15.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList6.ts", - "./testTs/test/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration7.ts", - "./testTs/test/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration2.d.ts", - "./testTs/test/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration6.ts", - "./testTs/test/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration1.ts", - "./testTs/test/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration3.ts", - "./testTs/test/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration4.ts", - "./testTs/test/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration2.ts", - "./testTs/test/parser/ecmascript5/Types/parserTypeQuery3.ts", - "./testTs/test/parser/ecmascript5/Types/parserTypeQuery2.ts", - "./testTs/test/parser/ecmascript5/Types/parserTypeQuery7.ts", - "./testTs/test/parser/ecmascript5/Types/parserTypeQuery1.ts", - "./testTs/test/parser/ecmascript5/Types/parserTypeQuery6.ts", - "./testTs/test/parser/ecmascript5/Types/parserTypeQuery8.ts", - "./testTs/test/parser/ecmascript5/Types/parserTypeQuery5.ts", - "./testTs/test/parser/ecmascript5/Types/parserTypeQuery9.ts", - "./testTs/test/parser/ecmascript5/Types/parserTypeQuery4.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolProperty2.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolProperty6.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolProperty3.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolProperty8.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolProperty5.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolProperty7.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolProperty1.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolProperty9.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolProperty4.ts", - "./testTs/test/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression5.ts", - "./testTs/test/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression4.ts", - "./testTs/test/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression1.ts", - "./testTs/test/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression2.ts", - "./testTs/test/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression3.ts", - "./testTs/test/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration8.ts", - "./testTs/test/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration3.ts", - "./testTs/test/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration1.ts", - "./testTs/test/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration2.ts", - "./testTs/test/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration6.ts", - "./testTs/test/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration4.ts", - "./testTs/test/parser/ecmascript5/CatchClauses/parserCatchClauseWithTypeAnnotation1.ts", - "./testTs/test/parser/ecmascript5/ExportAssignments/parserExportAssignment7.ts", - "./testTs/test/parser/ecmascript5/ExportAssignments/parserExportAssignment5.ts", - "./testTs/test/parser/ecmascript5/ExportAssignments/parserExportAssignment8.ts", - "./testTs/test/parser/ecmascript5/ExportAssignments/parserExportAssignment3.ts", - "./testTs/test/parser/ecmascript5/ExportAssignments/parserExportAssignment6.ts", - "./testTs/test/parser/ecmascript5/ExportAssignments/parserExportAssignment9.ts", - "./testTs/test/parser/ecmascript5/ExportAssignments/parserExportAssignment1.ts", - "./testTs/test/parser/ecmascript5/ExportAssignments/parserExportAssignment2.ts", - "./testTs/test/parser/ecmascript5/ExportAssignments/parserExportAssignment4.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGenericsInTypeContexts2.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGenericConstraint4.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity7.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGenericConstraint5.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGenericConstraint6.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity8.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity14.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGenericsInTypeContexts1.ts", - "./testTs/test/parser/ecmascript5/Generics/parserConstructorAmbiguity1.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGenericConstraint2.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity4.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity16.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity20.ts", - "./testTs/test/parser/ecmascript5/Generics/parserConstructorAmbiguity2.ts", - "./testTs/test/parser/ecmascript5/Generics/parserCastVersusArrowFunction1.ts", - "./testTs/test/parser/ecmascript5/Generics/parserMemberAccessExpression1.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity11.ts", - "./testTs/test/parser/ecmascript5/Generics/parserAmbiguity1.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity3.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGenericConstraint3.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity15.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity19.ts", - "./testTs/test/parser/ecmascript5/Generics/parserConstructorAmbiguity3.ts", - "./testTs/test/parser/ecmascript5/Generics/parserMemberAccessOffOfGenericType1.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity2.ts", - "./testTs/test/parser/ecmascript5/Generics/parserConstructorAmbiguity4.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGenericConstraint7.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity9.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGenericsInInterfaceDeclaration1.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity12.ts", - "./testTs/test/parser/ecmascript5/Generics/parserAmbiguity2.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity17.ts", - "./testTs/test/parser/ecmascript5/Generics/parserAmbiguity3.ts", - "./testTs/test/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator4.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity18.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGenericsInVariableDeclaration1.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity13.ts", - "./testTs/test/parser/ecmascript5/Generics/parserObjectCreation1.ts", - "./testTs/test/parser/ecmascript5/AutomaticSemicolonInsertion/parserAutomaticSemicolonInsertion1.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserPostfixUnaryExpression1.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserObjectCreation2.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserUnaryExpression2.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserUnaryExpression1.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserAssignmentExpression1.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserMemberAccessAfterPostfixExpression1.ts", - "./testTs/test/parser/ecmascript5/Expressions/parseIncompleteBinaryExpression1.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserTypeAssertionInObjectCreationExpression1.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserUnaryExpression4.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserUnaryExpression3.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserUnaryExpression5.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserUnaryExpression7.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserPostfixPostfixExpression1.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserConditionalExpression1.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserInvocationOfMemberAccessOffOfObjectCreationExpression1.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForInStatement6.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForInStatement7.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement21.ts", - "./testTs/test/parser/ecmascript5/Statements/parserDoStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement2.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForInStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement10.ts", - "./testTs/test/parser/ecmascript5/Statements/parserIfStatement2.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement5.ts", - "./testTs/test/parser/ecmascript5/Statements/parserBreakStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForInStatement4.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement20.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForInStatement3.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForStatement2.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement9.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement4.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement7.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement15.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForInStatement2.ts", - "./testTs/test/parser/ecmascript5/Statements/parserVariableStatement2.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement11.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForStatement7.ts", - "./testTs/test/parser/ecmascript5/Statements/parserWithStatement2.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement13.ts", - "./testTs/test/parser/ecmascript5/Statements/parserIfStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForStatement4.ts", - "./testTs/test/parser/ecmascript5/Statements/parserWithStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement3.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement6.ts", - "./testTs/test/parser/ecmascript5/Statements/parserTryStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement12.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForStatement8.ts", - "./testTs/test/parser/ecmascript5/Statements/parserReturnStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserWhileStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForInStatement5.ts", - "./testTs/test/parser/ecmascript5/Statements/parserSwitchStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserEmptyStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForStatement5.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForStatement3.ts", - "./testTs/test/parser/ecmascript5/Statements/parserBlockStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserDebuggerStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserForStatement6.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement14.ts", - "./testTs/test/parser/ecmascript5/Statements/parserThrowStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserExpressionStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement8.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement16.ts", - "./testTs/test/parser/ecmascript5/Statements/parserContinueStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserLabeledStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/parserVariableStatement1.d.ts", - "./testTs/test/parser/ecmascript5/Statements/LabeledStatements/parser_duplicateLabel1.ts", - "./testTs/test/parser/ecmascript5/Statements/LabeledStatements/parser_duplicateLabel2.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement2.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget1.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement4.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget5.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement1.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement3.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement4.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget6.ts", - "./testTs/test/parser/ecmascript5/Statements/ReturnStatements/parserReturnStatement2.ts", - "./testTs/test/parser/ecmascript5/Statements/ReturnStatements/parserReturnStatement4.ts", - "./testTs/test/parser/ecmascript5/Statements/ReturnStatements/parserReturnStatement1.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakNotInIterationOrSwitchStatement2.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget5.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement4.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget6.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakNotInIterationOrSwitchStatement1.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName38.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName1.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName11.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName12.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName25.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName28.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName7.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName21.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName3.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName15.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName41.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName10.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName4.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName36.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName20.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName14.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName22.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName16.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName8.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName37.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName5.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName13.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName30.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName19.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName18.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName24.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName2.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName35.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName9.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName29.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName26.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName40.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName27.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName31.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName23.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName6.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName34.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName17.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName39.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName32.ts", - "./testTs/test/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName33.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement12.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement16.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement20.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement2.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement7.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement5.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement13.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement4.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement6.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement21.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement22.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement1.d.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement15.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement11.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement8.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement14.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement9.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement3.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement10.ts", - "./testTs/test/parser/ecmascript6/ShorthandPropertyAssignment/parserShorthandPropertyAssignment4.ts", - "./testTs/test/parser/ecmascript6/ShorthandPropertyAssignment/parserShorthandPropertyAssignment1.ts", - "./testTs/test/parser/ecmascript6/ShorthandPropertyAssignment/parserShorthandPropertyAssignment5.ts", - "./testTs/test/parser/ecmascript6/ShorthandPropertyAssignment/parserShorthandPropertyAssignment3.ts", - "./testTs/test/parser/ecmascript6/ShorthandPropertyAssignment/parserShorthandPropertyAssignment2.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolIndexer5.ts", - "./testTs/test/salsa/plainJSRedeclare2.ts", - "./testTs/test/salsa/checkSpecialPropertyAssignments.ts", - "./testTs/test/salsa/inferringClassMembersFromAssignments.ts", - "./testTs/test/salsa/lateBoundAssignmentDeclarationSupport5.ts", - "./testTs/test/salsa/typeFromPropertyAssignment36.ts", - "./testTs/test/salsa/typeFromPrototypeAssignment3.ts", - "./testTs/test/salsa/conflictingCommonJSES2015Exports.ts", - "./testTs/test/salsa/moduleExportWithExportPropertyAssignment4.ts", - "./testTs/test/salsa/typeFromPropertyAssignment22.ts", - "./testTs/test/salsa/typeFromPropertyAssignment33.ts", - "./testTs/test/salsa/moduleExportsAliasLoop1.ts", - "./testTs/test/salsa/typeFromPropertyAssignment26.ts", - "./testTs/test/salsa/typeFromPrototypeAssignment2.ts", - "./testTs/test/salsa/plainJSBinderErrors.ts", - "./testTs/test/salsa/typeFromPropertyAssignment28.ts", - "./testTs/test/salsa/typeFromPropertyAssignment31.ts", - "./testTs/test/salsa/nestedDestructuringOfRequire.ts", - "./testTs/test/salsa/typeFromPropertyAssignment32.ts", - "./testTs/test/salsa/enumMergeWithExpando.ts", - "./testTs/test/salsa/jsContainerMergeTsDeclaration2.ts", - "./testTs/test/salsa/typeFromPropertyAssignment29.ts", - "./testTs/test/salsa/typeLookupInIIFE.ts", - "./testTs/test/salsa/requireOfESWithPropertyAccess.ts", - "./testTs/test/salsa/lateBoundAssignmentDeclarationSupport3.ts", - "./testTs/test/salsa/plainJSRedeclare.ts", - "./testTs/test/salsa/prototypePropertyAssignmentMergeWithInterfaceMethod.ts", - "./testTs/test/salsa/jsContainerMergeTsDeclaration3.ts", - "./testTs/test/salsa/plainJSReservedStrict.ts", - "./testTs/test/salsa/thisPropertyAssignmentComputed.ts", - "./testTs/test/salsa/typeFromJSInitializer4.ts", - "./testTs/test/salsa/moduleExportWithExportPropertyAssignment3.ts", - "./testTs/test/salsa/typeFromPropertyAssignment21.ts", - "./testTs/test/salsa/moduleExportsAliasLoop2.ts", - "./testTs/test/salsa/chainedPrototypeAssignment.ts", - "./testTs/test/salsa/typeFromJSConstructor.ts", - "./testTs/test/salsa/typeFromJSInitializer.ts", - "./testTs/test/salsa/typeFromPrototypeAssignment.ts", - "./testTs/test/salsa/exportDefaultInJsFile02.ts", - "./testTs/test/salsa/moduleExportDuplicateAlias.ts", - "./testTs/test/salsa/assignmentToVoidZero2.ts", - "./testTs/test/salsa/thisPropertyAssignment.ts", - "./testTs/test/salsa/propertyAssignmentUseParentType2.ts", - "./testTs/test/salsa/lateBoundAssignmentDeclarationSupport2.ts", - "./testTs/test/salsa/constructorFunctions.ts", - "./testTs/test/salsa/exportPropertyAssignmentNameResolution.ts", - "./testTs/test/salsa/exportDefaultInJsFile01.ts", - "./testTs/test/salsa/propertyAssignmentOnUnresolvedImportedSymbol.ts", - "./testTs/test/salsa/expandoOnAlias.ts", - "./testTs/test/salsa/importAliasModuleExports.ts", - "./testTs/test/salsa/constructorFunctionsStrict.ts", - "./testTs/test/salsa/lateBoundAssignmentDeclarationSupport4.ts", - "./testTs/test/salsa/lateBoundAssignmentDeclarationSupport1.ts", - "./testTs/test/salsa/namespaceAssignmentToRequireAlias.ts", - "./testTs/test/salsa/moduleExportWithExportPropertyAssignment.ts", - "./testTs/test/salsa/globalMergeWithCommonJSAssignmentDeclaration.ts", - "./testTs/test/salsa/exportNestedNamespaces2.ts", - "./testTs/test/salsa/prototypePropertyAssignmentMergeAcrossFiles2.ts", - "./testTs/test/salsa/moduleExportWithExportPropertyAssignment2.ts", - "./testTs/test/salsa/moduleExportAliasUnknown.ts", - "./testTs/test/salsa/classCanExtendConstructorFunction.ts", - "./testTs/test/salsa/lateBoundAssignmentDeclarationSupport6.ts", - "./testTs/test/functions/parameterInitializersForwardReferencing.ts", - "./testTs/test/functions/functionOverloadCompatibilityWithVoid01.ts", - "./testTs/test/functions/functionOverloadErrorsSyntax.ts", - "./testTs/test/functions/parameterInitializersForwardReferencing1_es6.ts", - "./testTs/test/functions/functionImplementationErrors.ts", - "./testTs/test/functions/strictBindCallApply1.ts", - "./testTs/test/functions/parameterInitializersForwardReferencing1.ts", - "./testTs/test/functions/functionNameConflicts.ts", - "./testTs/test/functions/functionOverloadErrors.ts", - "./testTs/test/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts", - "./testTs/test/importAssertion/importAssertion4.ts", - "./testTs/test/importAssertion/importAssertion5.ts", - "./testTs/test/Symbols/ES5SymbolProperty2.ts", - "./testTs/test/Symbols/ES5SymbolProperty6.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesErrorFromNotUsingIdentifier.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesFunctionArgument2.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignmentErrorFromMissingIdentifier.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignmentError.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesErrorWithModule.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.ts", - "./testTs/test/es6/newTarget/invalidNewTarget.es6.ts", - "./testTs/test/es6/newTarget/invalidNewTarget.es5.ts", - "./testTs/test/es6/memberFunctionDeclarations/MemberFunctionDeclaration4_es6.ts", - "./testTs/test/es6/memberFunctionDeclarations/MemberFunctionDeclaration8_es6.ts", - "./testTs/test/es6/memberFunctionDeclarations/MemberFunctionDeclaration5_es6.ts", - "./testTs/test/es6/memberFunctionDeclarations/MemberFunctionDeclaration3_es6.ts", - "./testTs/test/es6/memberFunctionDeclarations/MemberFunctionDeclaration6_es6.ts", - "./testTs/test/es6/functionPropertyAssignments/FunctionPropertyAssignments5_es6.ts", - "./testTs/test/es6/functionPropertyAssignments/FunctionPropertyAssignments6_es6.ts", - "./testTs/test/es6/functionPropertyAssignments/FunctionPropertyAssignments4_es6.ts", - "./testTs/test/es6/functionPropertyAssignments/FunctionPropertyAssignments3_es6.ts", - "./testTs/test/es6/functionPropertyAssignments/FunctionPropertyAssignments2_es6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionThisCapturing.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments14.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments19.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments12.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments09.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments04.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments10.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments01_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments03.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments17.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments02_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments06.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments05.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments11.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments16.ts", - "./testTs/test/es6/arrowFunction/disallowLineTerminatorBeforeArrow.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments18.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments07.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionThisCapturingES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments12_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments01.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments15.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments02.ts", - "./testTs/test/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteralError.ts", - "./testTs/test/es6/binaryAndOctalIntegerLiteral/binaryIntegerLiteralError.ts", - "./testTs/test/es6/binaryAndOctalIntegerLiteral/invalidBinaryIntegerLiteralAndOctalIntegerLiteral.ts", - "./testTs/test/es6/classExpressions/typeArgumentInferenceWithClassExpression2.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit4_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames26_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames3_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames43_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames40_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames34_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames49_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames45_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit4_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames30_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames21_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames51_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames32_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames17_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames36_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames44_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames49_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames35_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames9_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames34_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames40_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames39_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames32_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesOnOverloads_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames39_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames19_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames19_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesWithStaticProperty.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames12_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames12_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames43_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames38_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames15_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames50_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames8_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames30_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames9_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames15_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames5_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit3_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType8_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames2_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType10_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesOnOverloads_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames6_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames26_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames50_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames3_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames35_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames27_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames8_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType9_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType9_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames23_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames14_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames24_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames5_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames2_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames24_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames27_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit6_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames14_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType8_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames36_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType10_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames42_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit3_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames45_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames42_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames51_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames6_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames17_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames44_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames21_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames38_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit6_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames23_ES6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration2_es6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration1_es6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration6_es6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration4_es6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration13_es6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration11_es6.ts", - "./testTs/test/es6/templates/templateStringInModulo.ts", - "./testTs/test/es6/templates/templateStringUnterminated2_ES6.ts", - "./testTs/test/es6/templates/templateStringUnterminated4.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithIncompatibleTypedTags.ts", - "./testTs/test/es6/templates/templateStringUnterminated1_ES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithOverloadResolution1_ES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithIncompatibleTypedTagsES6.ts", - "./testTs/test/es6/templates/templateStringInModuleNameES6.ts", - "./testTs/test/es6/templates/templateStringBinaryOperationsInvalid.ts", - "./testTs/test/es6/templates/templateStringInNewExpression.ts", - "./testTs/test/es6/templates/templateStringBinaryOperationsES6Invalid.ts", - "./testTs/test/es6/templates/templateStringInModuleName.ts", - "./testTs/test/es6/templates/taggedTemplateStringsTypeArgumentInferenceES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedInstanceOf.ts", - "./testTs/test/es6/templates/templateStringInFunctionParameterTypeES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithOverloadResolution1.ts", - "./testTs/test/es6/templates/templateStringInDeleteExpressionES6.ts", - "./testTs/test/es6/templates/taggedTemplateWithConstructableTag02.ts", - "./testTs/test/es6/templates/TemplateExpression1.ts", - "./testTs/test/es6/templates/templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.ts", - "./testTs/test/es6/templates/templateStringInInstanceOfES6.ts", - "./testTs/test/es6/templates/templateStringInMultiplicationES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.ts", - "./testTs/test/es6/templates/templateStringUnterminated1.ts", - "./testTs/test/es6/templates/templateStringInInstanceOf.ts", - "./testTs/test/es6/templates/templateStringInCallExpression.ts", - "./testTs/test/es6/templates/templateStringInNewOperatorES6.ts", - "./testTs/test/es6/templates/taggedTemplateWithConstructableTag01.ts", - "./testTs/test/es6/templates/templateStringInPropertyNameES6_1.ts", - "./testTs/test/es6/templates/templateStringInNewExpressionES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedYieldKeyword.ts", - "./testTs/test/es6/templates/templateStringUnterminated3_ES6.ts", - "./testTs/test/es6/templates/templateStringInPropertyName1.ts", - "./testTs/test/es6/templates/templateStringUnterminated5.ts", - "./testTs/test/es6/templates/taggedTemplatesWithTypeArguments2.ts", - "./testTs/test/es6/templates/templateStringInObjectLiteralES6.ts", - "./testTs/test/es6/templates/templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.ts", - "./testTs/test/es6/templates/templateStringInMultiplication.ts", - "./testTs/test/es6/templates/templateStringUnterminated5_ES6.ts", - "./testTs/test/es6/templates/templateStringInCallExpressionES6.ts", - "./testTs/test/es6/templates/templateStringUnterminated3.ts", - "./testTs/test/es6/templates/templateStringInPropertyName2.ts", - "./testTs/test/es6/templates/templateStringUnterminated2.ts", - "./testTs/test/es6/templates/templateStringInDeleteExpression.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithOverloadResolution3.ts", - "./testTs/test/es6/templates/templateStringInNewOperator.ts", - "./testTs/test/es6/templates/templateStringInDivision.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedInstanceOfES6.ts", - "./testTs/test/es6/templates/templateStringInTaggedTemplateES6.ts", - "./testTs/test/es6/templates/templateStringUnterminated4_ES6.ts", - "./testTs/test/es6/templates/templateStringInTaggedTemplate.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithOverloadResolution3_ES6.ts", - "./testTs/test/es6/templates/templateStringInObjectLiteral.ts", - "./testTs/test/es6/templates/templateStringInPropertyNameES6_2.ts", - "./testTs/test/es6/templates/templateStringInModuloES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsTypeArgumentInference.ts", - "./testTs/test/es6/templates/templateStringInFunctionParameterType.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration13_es6.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration10_es6.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration6_es6.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration7_es6.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration8_es6.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration12_es6.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration3_es6.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration5_es6.ts", - "./testTs/test/es6/classDeclaration/superCallFromClassThatHasNoBaseTypeButWithSameSymbolInterface.ts", - "./testTs/test/es6/classDeclaration/superCallBeforeThisAccessing4.ts", - "./testTs/test/es6/classDeclaration/superCallBeforeThisAccessing7.ts", - "./testTs/test/es6/classDeclaration/superCallBeforeThisAccessing3.ts", - "./testTs/test/es6/classDeclaration/parseClassDeclarationInStrictModeByDefaultInES6.ts", - "./testTs/test/es6/classDeclaration/superCallBeforeThisAccessing6.ts", - "./testTs/test/es6/restParameters/readonlyRestParameters.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings24_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates17_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates17_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings17_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates14_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates19_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings14_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates07_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates19_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates12_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings25_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings22_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings14_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings07_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings24_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings21_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates12_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings07_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings21_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings12_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings19_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings17_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates14_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates07_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings20_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings12_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings19_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings25_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings20_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings22_ES6.ts", - "./testTs/test/es6/for-ofStatements/for-of55.ts", - "./testTs/test/es6/for-ofStatements/for-of3.ts", - "./testTs/test/es6/for-ofStatements/for-of30.ts", - "./testTs/test/es6/for-ofStatements/for-of7.ts", - "./testTs/test/es6/for-ofStatements/for-of11.ts", - "./testTs/test/es6/for-ofStatements/for-of33.ts", - "./testTs/test/es6/for-ofStatements/for-of48.ts", - "./testTs/test/es6/for-ofStatements/for-of34.ts", - "./testTs/test/es6/for-ofStatements/for-of29.ts", - "./testTs/test/es6/for-ofStatements/for-of15.ts", - "./testTs/test/es6/for-ofStatements/for-of46.ts", - "./testTs/test/es6/for-ofStatements/for-of52.ts", - "./testTs/test/es6/for-ofStatements/for-of14.ts", - "./testTs/test/es6/for-ofStatements/for-of54.ts", - "./testTs/test/es6/for-ofStatements/for-of12.ts", - "./testTs/test/es6/for-ofStatements/for-of16.ts", - "./testTs/test/es6/for-ofStatements/for-of51.ts", - "./testTs/test/es6/for-ofStatements/for-of6.ts", - "./testTs/test/es6/for-ofStatements/for-of47.ts", - "./testTs/test/es6/for-ofStatements/for-of32.ts", - "./testTs/test/es6/for-ofStatements/for-of2.ts", - "./testTs/test/es6/for-ofStatements/for-of35.ts", - "./testTs/test/es6/for-ofStatements/for-of17.ts", - "./testTs/test/es6/for-ofStatements/for-of10.ts", - "./testTs/test/es6/for-ofStatements/for-of39.ts", - "./testTs/test/es6/Symbols/symbolProperty12.ts", - "./testTs/test/es6/Symbols/symbolType10.ts", - "./testTs/test/es6/Symbols/symbolProperty17.ts", - "./testTs/test/es6/Symbols/symbolProperty32.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit12.ts", - "./testTs/test/es6/Symbols/symbolProperty42.ts", - "./testTs/test/es6/Symbols/symbolProperty52.ts", - "./testTs/test/es6/Symbols/symbolProperty54.ts", - "./testTs/test/es6/Symbols/symbolType3.ts", - "./testTs/test/es6/Symbols/symbolType6.ts", - "./testTs/test/es6/Symbols/symbolType9.ts", - "./testTs/test/es6/Symbols/symbolProperty30.ts", - "./testTs/test/es6/Symbols/symbolType20.ts", - "./testTs/test/es6/Symbols/symbolType8.ts", - "./testTs/test/es6/Symbols/symbolType12.ts", - "./testTs/test/es6/Symbols/symbolProperty44.ts", - "./testTs/test/es6/Symbols/symbolProperty10.ts", - "./testTs/test/es6/Symbols/symbolProperty34.ts", - "./testTs/test/es6/Symbols/symbolType7.ts", - "./testTs/test/es6/Symbols/symbolProperty39.ts", - "./testTs/test/es6/Symbols/symbolProperty53.ts", - "./testTs/test/es6/Symbols/symbolProperty9.ts", - "./testTs/test/es6/Symbols/symbolProperty33.ts", - "./testTs/test/es6/Symbols/symbolProperty7.ts", - "./testTs/test/es6/Symbols/symbolType4.ts", - "./testTs/test/es6/Symbols/symbolProperty35.ts", - "./testTs/test/es6/Symbols/symbolType1.ts", - "./testTs/test/es6/Symbols/symbolProperty25.ts", - "./testTs/test/es6/Symbols/symbolProperty43.ts", - "./testTs/test/es6/Symbols/symbolType5.ts", - "./testTs/test/es6/Symbols/symbolProperty46.ts", - "./testTs/test/es6/Symbols/symbolProperty47.ts", - "./testTs/test/es6/Symbols/symbolType13.ts", - "./testTs/test/es6/Symbols/symbolProperty24.ts", - "./testTs/test/es6/Symbols/symbolProperty3.ts", - "./testTs/test/es6/Symbols/symbolType2.ts", - "./testTs/test/es6/Symbols/symbolType14.ts", - "./testTs/test/es6/Symbols/symbolType15.ts", - "./testTs/test/es6/Symbols/symbolProperty59.ts", - "./testTs/test/es6/Symbols/symbolProperty21.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall10.ts", - "./testTs/test/es6/spread/iteratorSpreadInArray6.ts", - "./testTs/test/es6/spread/arraySpreadImportHelpers.ts", - "./testTs/test/es6/spread/iteratorSpreadInArray8.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall2.ts", - "./testTs/test/es6/spread/iteratorSpreadInArray10.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall4.ts", - "./testTs/test/es6/spread/iteratorSpreadInArray5.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall6.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall7.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall8.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall9.ts", - "./testTs/test/es6/destructuring/destructuringParameterProperties3.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern13.ts", - "./testTs/test/es6/destructuring/declarationsAndAssignments.ts", - "./testTs/test/es6/destructuring/restElementWithInitializer1.ts", - "./testTs/test/es6/destructuring/objectBindingPatternKeywordIdentifiers01.ts", - "./testTs/test/es6/destructuring/destructuringArrayBindingPatternAndAssignment1ES5iterable.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration8.ts", - "./testTs/test/es6/destructuring/destructuringWithLiteralInitializers2.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration1ES6.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern26.ts", - "./testTs/test/es6/destructuring/destructuringVariableDeclaration2.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern24.ts", - "./testTs/test/es6/destructuring/destructuringTypeAssertionsES5_1.ts", - "./testTs/test/es6/destructuring/optionalBindingParametersInOverloads2.ts", - "./testTs/test/es6/destructuring/restElementWithBindingPattern2.ts", - "./testTs/test/es6/destructuring/restElementWithAssignmentPattern4.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration1ES5.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration6.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration3ES6.ts", - "./testTs/test/es6/destructuring/destructuringVoidStrictNullChecks.ts", - "./testTs/test/es6/destructuring/declarationWithNoInitializer.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern19.ts", - "./testTs/test/es6/destructuring/restElementWithAssignmentPattern2.ts", - "./testTs/test/es6/destructuring/destructuringTypeAssertionsES5_4.ts", - "./testTs/test/es6/destructuring/destructuringObjectBindingPatternAndAssignment3.ts", - "./testTs/test/es6/destructuring/optionalBindingParameters1.ts", - "./testTs/test/es6/destructuring/destructuringTypeAssertionsES5_3.ts", - "./testTs/test/es6/destructuring/destructuringArrayBindingPatternAndAssignment3.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern18.ts", - "./testTs/test/es6/destructuring/restElementWithInitializer2.ts", - "./testTs/test/es6/destructuring/destructuringArrayBindingPatternAndAssignment4.ts", - "./testTs/test/es6/destructuring/missingAndExcessProperties.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern7.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration3ES5.ts", - "./testTs/test/es6/destructuring/optionalBindingParametersInOverloads1.ts", - "./testTs/test/es6/destructuring/destructuringParameterProperties4.ts", - "./testTs/test/es6/destructuring/nonIterableRestElement3.ts", - "./testTs/test/es6/destructuring/restElementWithNullInitializer.ts", - "./testTs/test/es6/destructuring/destructuringArrayBindingPatternAndAssignment1ES6.ts", - "./testTs/test/es6/destructuring/destructuringArrayBindingPatternAndAssignment2.ts", - "./testTs/test/es6/destructuring/emptyVariableDeclarationBindingPatterns02_ES5.ts", - "./testTs/test/es6/destructuring/restPropertyWithBindingPattern.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern10.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern6.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern22.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration4.ts", - "./testTs/test/es6/destructuring/emptyObjectBindingPatternParameter04.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern25.ts", - "./testTs/test/es6/destructuring/destructuringAssignabilityCheck.ts", - "./testTs/test/es6/destructuring/destructuringControlFlow.ts", - "./testTs/test/es6/destructuring/destructuringTypeAssertionsES5_6.ts", - "./testTs/test/es6/destructuring/objectBindingPatternKeywordIdentifiers04.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration3ES5iterable.ts", - "./testTs/test/es6/destructuring/destructuringTypeAssertionsES5_7.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern21.ts", - "./testTs/test/es6/destructuring/destructuringParameterProperties1.ts", - "./testTs/test/es6/destructuring/emptyVariableDeclarationBindingPatterns02_ES6.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern17.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration5.ts", - "./testTs/test/es6/destructuring/destructuringObjectBindingPatternAndAssignment4.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern16.ts", - "./testTs/test/es6/destructuring/optionalBindingParameters2.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration1ES5iterable.ts", - "./testTs/test/es6/destructuring/objectBindingPatternKeywordIdentifiers02.ts", - "./testTs/test/es6/destructuring/destructuringParameterProperties2.ts", - "./testTs/test/es6/destructuring/destructuringTypeAssertionsES5_2.ts", - "./testTs/test/es6/destructuring/destructuringParameterProperties5.ts", - "./testTs/test/es6/destructuring/destructuringSpread.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern5.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern28.ts", - "./testTs/test/es6/destructuring/destructuringSameNames.ts", - "./testTs/test/es6/destructuring/emptyVariableDeclarationBindingPatterns02_ES5iterable.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern23.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration2.ts", - "./testTs/test/es6/destructuring/objectBindingPatternKeywordIdentifiers03.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern8.ts", - "./testTs/test/es6/destructuring/destructuringArrayBindingPatternAndAssignment1ES5.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern29.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck9.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck21.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression18_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck48.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck50.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression14_es6.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression1_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck7.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck6.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck8.ts", - "./testTs/test/es6/yieldExpressions/YieldStarExpression2_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorInAmbientContext3.d.ts", - "./testTs/test/es6/yieldExpressions/generatorInAmbientContext1.ts", - "./testTs/test/es6/yieldExpressions/generatorInAmbientContext2.ts", - "./testTs/test/es6/yieldExpressions/generatorOverloads1.ts", - "./testTs/test/es6/yieldExpressions/generatorOverloads3.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression8_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck31.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression12_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck63.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression6_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck25.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck57.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck59.ts", - "./testTs/test/es6/yieldExpressions/yieldExpressionInControlFlow.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck39.ts", - "./testTs/test/es6/yieldExpressions/YieldStarExpression1_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck32.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck20.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck61.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression9_es6.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression17_es6.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression11_es6.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression16_es6.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression5_es6.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression2_es6.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression10_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorOverloads2.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck18.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression15_es6.ts", - "./testTs/test/es6/yieldExpressions/YieldStarExpression3_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorInAmbientContext4.d.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck58.ts", - "./testTs/test/es6/modules/defaultExportsCannotMerge01.ts", - "./testTs/test/es6/modules/exportStar-amd.ts", - "./testTs/test/es6/modules/multipleDefaultExports05.ts", - "./testTs/test/es6/modules/defaultExportsCannotMerge03.ts", - "./testTs/test/es6/modules/exportsAndImportsWithUnderscores1.ts", - "./testTs/test/es6/modules/importEmptyFromModuleNotExisted.ts", - "./testTs/test/es6/modules/defaultExportsCannotMerge02.ts", - "./testTs/test/es6/modules/exportStar.ts", - "./testTs/test/es6/modules/multipleDefaultExports03.ts", - "./testTs/test/es6/modules/exportBinding.ts", - "./testTs/test/es6/modules/exportSpellingSuggestion.ts", - "./testTs/test/es6/modules/multipleDefaultExports01.ts", - "./testTs/test/es6/modules/defaultExportsCannotMerge04.ts", - "./testTs/test/es6/modules/exportsAndImportsWithContextualKeywordNames01.ts", - "./testTs/test/es6/modules/multipleDefaultExports04.ts", - "./testTs/test/es6/modules/multipleDefaultExports02.ts", - "./testTs/test/es2020/bigintMissingES2020.ts", - "./testTs/test/es2020/constructBigint.ts", - "./testTs/test/es2020/bigintMissingESNext.ts", - "./testTs/test/es2020/modules/exportAsNamespace_missingEmitHelpers.ts", - "./testTs/test/es2020/modules/exportAsNamespace_exportAssignment.ts", - "./testTs/test/es2020/modules/exportAsNamespace_nonExistent.ts", - "./testTs/test/enums/enumErrors.ts", - "./testTs/test/enums/awaitAndYield.ts", - "./testTs/test/enums/enumConstantMembers.ts", - "./testTs/test/enums/enumMergingErrors.ts", - "./testTs/test/enums/enumConstantMemberWithTemplateLiterals.ts", - "./testTs/test/enums/enumConstantMemberWithString.ts", - "./testTs/test/constEnums/constEnum2.ts", - "./testTs/test/constEnums/constEnumPropertyAccess2.ts" + "./testTs/test/testts/fixSignatureCaching.ts", + "./testTs/test/testts/scanner/ecmascript3/scannerES3NumericLiteral6.ts", + "./testTs/test/testts/scanner/ecmascript3/scannerES3NumericLiteral4.ts", + "./testTs/test/testts/scanner/ecmascript3/scannerES3NumericLiteral3.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerNumericLiteral6.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerNumericLiteral4.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerUnicodeEscapeInKeyword1.ts", + "./testTs/test/testts/scanner/ecmascript5/scannertest1.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerS7.8.3_A6.1_T1.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerS7.4_A2_T2.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerNumericLiteral3.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerStringLiterals.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerS7.3_A1.1_T2.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerImportDeclaration1.ts", + "./testTs/test/testts/scanner/ecmascript5/scanner10.1.1-8gs.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerS7.2_A1.5_T2.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerUnicodeEscapeInKeyword2.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerClass2.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerUnexpectedNullCharacter1.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerNumericLiteral9.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerNumericLiteral2.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerNumericLiteral8.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerAdditiveExpression1.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerS7.6_A4.2_T1.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerS7.8.4_A7.1_T4.ts", + "./testTs/test/testts/generators/generatorReturnTypeInference.ts", + "./testTs/test/testts/generators/generatorImplicitAny.ts", + "./testTs/test/testts/generators/generatorReturnTypeFallback.2.ts", + "./testTs/test/testts/generators/generatorAssignability.ts", + "./testTs/test/testts/generators/generatorReturnTypeFallback.3.ts", + "./testTs/test/testts/generators/generatorExplicitReturnType.ts", + "./testTs/test/testts/generators/generatorReturnContextualType.ts", + "./testTs/test/testts/generators/generatorReturnTypeInferenceNonStrict.ts", + "./testTs/test/testts/statements/labeledStatements/labeledStatementWithLabel_es2015.ts", + "./testTs/test/testts/statements/labeledStatements/labeledStatementWithLabel.ts", + "./testTs/test/testts/statements/labeledStatements/labeledStatementWithLabel_strict.ts", + "./testTs/test/testts/statements/returnStatements/invalidReturnStatements.ts", + "./testTs/test/testts/statements/for-inStatements/for-inStatementsInvalid.ts", + "./testTs/test/testts/statements/for-inStatements/for-inStatements.ts", + "./testTs/test/testts/statements/for-inStatements/for-inStatementsDestructuring3.ts", + "./testTs/test/testts/statements/for-inStatements/for-inStatementsArrayErrors.ts", + "./testTs/test/testts/statements/for-inStatements/for-inStatementsDestructuring4.ts", + "./testTs/test/testts/statements/for-inStatements/for-inStatementsDestructuring.ts", + "./testTs/test/testts/statements/for-inStatements/for-inStatementsDestructuring2.ts", + "./testTs/test/testts/statements/switchStatements/switchStatements.ts", + "./testTs/test/testts/statements/continueStatements/invalidWhileContinueStatements.ts", + "./testTs/test/testts/statements/continueStatements/invalidForContinueStatements.ts", + "./testTs/test/testts/statements/continueStatements/invalidDoWhileContinueStatements.ts", + "./testTs/test/testts/statements/continueStatements/invalidForInContinueStatements.ts", + "./testTs/test/testts/statements/continueStatements/invalidSwitchContinueStatement.ts", + "./testTs/test/testts/statements/breakStatements/switchBreakStatements.ts", + "./testTs/test/testts/statements/breakStatements/invalidDoWhileBreakStatements.ts", + "./testTs/test/testts/statements/breakStatements/invalidWhileBreakStatements.ts", + "./testTs/test/testts/statements/breakStatements/invalidSwitchBreakStatement.ts", + "./testTs/test/testts/statements/breakStatements/invalidForBreakStatements.ts", + "./testTs/test/testts/statements/breakStatements/invalidForInBreakStatements.ts", + "./testTs/test/testts/statements/forStatements/forStatementsMultipleInvalidDecl.ts", + "./testTs/test/testts/statements/throwStatements/invalidThrowStatement.ts", + "./testTs/test/testts/statements/VariableStatements/everyTypeWithAnnotationAndInvalidInitializer.ts", + "./testTs/test/testts/statements/VariableStatements/invalidMultipleVariableDeclarations.ts", + "./testTs/test/testts/statements/for-ofStatements/ES3For-ofTypeCheck1.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of28.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck11.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck8.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of35.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck9.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck14.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of30.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of20.ts", + "./testTs/test/testts/statements/for-ofStatements/ES3For-ofTypeCheck4.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck7.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of8.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of34.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of27.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of31.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of36.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of29.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of26.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of17.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of12.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck12.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of7.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck10.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck13.ts", + "./testTs/test/testts/statements/tryStatements/catchClauseWithTypeAnnotation.ts", + "./testTs/test/testts/statements/tryStatements/invalidTryStatements.ts", + "./testTs/test/testts/statements/withStatements/withStatements.ts", + "./testTs/test/testts/controlFlow/controlFlowAliasing.ts", + "./testTs/test/testts/controlFlow/exhaustiveSwitchStatements1.ts", + "./testTs/test/testts/controlFlow/controlFlowGenericTypes.ts", + "./testTs/test/testts/controlFlow/definiteAssignmentAssertions.ts", + "./testTs/test/testts/controlFlow/assertionTypePredicates1.ts", + "./testTs/test/testts/controlFlow/controlFlowIterationErrors.ts", + "./testTs/test/testts/controlFlow/controlFlowNullishCoalesce.ts", + "./testTs/test/testts/controlFlow/controlFlowOptionalChain.ts", + "./testTs/test/testts/controlFlow/controlFlowTypeofObject.ts", + "./testTs/test/testts/controlFlow/controlFlowIIFE.ts", + "./testTs/test/testts/controlFlow/definiteAssignmentAssertionsWithObjectShortHand.ts", + "./testTs/test/testts/controlFlow/neverReturningFunctions1.ts", + "./testTs/test/testts/controlFlow/controlFlowDeleteOperator.ts", + "./testTs/test/testts/types/import/importTypeLocalMissing.ts", + "./testTs/test/testts/types/import/importTypeNestedNoRef.ts", + "./testTs/test/testts/types/import/importTypeGeneric.ts", + "./testTs/test/testts/types/import/importTypeNonString.ts", + "./testTs/test/testts/types/import/importTypeAmbientMissing.ts", + "./testTs/test/testts/types/import/importTypeNested.ts", + "./testTs/test/testts/types/never/neverTypeErrors2.ts", + "./testTs/test/testts/types/never/neverTypeErrors1.ts", + "./testTs/test/testts/types/never/neverIntersectionNotCallable.ts", + "./testTs/test/testts/types/objectTypeLiteral/objectTypeLiteralSyntax2.ts", + "./testTs/test/testts/types/objectTypeLiteral/indexSignatures/multipleNumericIndexers.ts", + "./testTs/test/testts/types/objectTypeLiteral/indexSignatures/stringIndexerConstrainsPropertyDeclarations.ts", + "./testTs/test/testts/types/objectTypeLiteral/indexSignatures/numericIndexerConstrainsPropertyDeclarations2.ts", + "./testTs/test/testts/types/objectTypeLiteral/indexSignatures/numericIndexerConstrainsPropertyDeclarations.ts", + "./testTs/test/testts/types/objectTypeLiteral/indexSignatures/multipleStringIndexers.ts", + "./testTs/test/testts/types/objectTypeLiteral/indexSignatures/stringIndexerConstrainsPropertyDeclarations2.ts", + "./testTs/test/testts/types/objectTypeLiteral/propertySignatures/numericStringNamedPropertyEquivalence.ts", + "./testTs/test/testts/types/objectTypeLiteral/propertySignatures/stringNamedPropertyDuplicates.ts", + "./testTs/test/testts/types/objectTypeLiteral/propertySignatures/numericNamedPropertyDuplicates.ts", + "./testTs/test/testts/types/objectTypeLiteral/constructSignatures/constructSignaturesWithOverloads2.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignaturesWithDuplicateParameters.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/stringLiteralTypesInImplementationSignatures2.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignaturesWithParameterInitializers2.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/restParameterWithoutAnnotationIsAnyArray.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignatureWithOptionalParameterAndInitializer.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignaturesWithParameterInitializers.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignaturesWithAccessibilityModifiersOnParameters.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/constructSignatureWithAccessibilityModifiersOnParameters2.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/restParametersOfNonArrayTypes2.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/specializedSignatureIsNotSubtypeOfNonSpecializedSignature.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/restParametersOfNonArrayTypes.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/constructSignatureWithAccessibilityModifiersOnParameters.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignaturesThatDifferOnlyByReturnType2.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint4.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/restParametersWithArrayTypeAnnotations.ts", + "./testTs/test/testts/types/objectTypeLiteral/methodSignatures/objectTypesWithOptionalProperties2.ts", + "./testTs/test/testts/types/objectTypeLiteral/methodSignatures/methodSignaturesWithOverloads.ts", + "./testTs/test/testts/types/objectTypeLiteral/methodSignatures/objectTypesWithOptionalProperties.ts", + "./testTs/test/testts/types/literal/templateLiteralTypesPatterns.ts", + "./testTs/test/testts/types/literal/templateLiteralTypes3.ts", + "./testTs/test/testts/types/literal/enumLiteralTypes3.ts", + "./testTs/test/testts/types/literal/stringLiteralsWithSwitchStatements02.ts", + "./testTs/test/testts/types/literal/templateLiteralTypes2.ts", + "./testTs/test/testts/types/literal/stringLiteralsWithEqualityChecks04.ts", + "./testTs/test/testts/types/literal/stringLiteralsWithSwitchStatements01.ts", + "./testTs/test/testts/types/literal/stringLiteralsAssertionsInEqualityComparisons02.ts", + "./testTs/test/testts/types/literal/stringLiteralsWithEqualityChecks02.ts", + "./testTs/test/testts/types/literal/templateLiteralTypesPatternsPrefixSuffixAssignability.ts", + "./testTs/test/testts/types/literal/numericLiteralTypes3.ts", + "./testTs/test/testts/types/literal/stringLiteralsWithSwitchStatements04.ts", + "./testTs/test/testts/types/literal/stringLiteralsWithSwitchStatements03.ts", + "./testTs/test/testts/types/literal/templateLiteralTypes1.ts", + "./testTs/test/testts/types/literal/literalTypesWidenInParameterPosition.ts", + "./testTs/test/testts/types/literal/stringLiteralsWithEqualityChecks01.ts", + "./testTs/test/testts/types/literal/stringEnumLiteralTypes3.ts", + "./testTs/test/testts/types/literal/stringLiteralsWithEqualityChecks03.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/circularTypeofWithVarOrFunc.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/typeQueryOnClass.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/invalidTypeOfTarget.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/recursiveTypesWithTypeof.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/typeofThis.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/typeofAnExportedType.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/typeofTypeParameter.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/typeofANonExportedType.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/typeofClassWithPrivates.ts", + "./testTs/test/testts/types/specifyingTypes/typeReferences/nonGenericTypeReferenceWithTypeArguments.ts", + "./testTs/test/testts/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument3.ts", + "./testTs/test/testts/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument.d.ts", + "./testTs/test/testts/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument2.ts", + "./testTs/test/testts/types/specifyingTypes/typeReferences/genericTypeReferenceWithoutTypeArgument.ts", + "./testTs/test/testts/types/specifyingTypes/typeLiterals/arrayTypeOfFunctionTypes.ts", + "./testTs/test/testts/types/specifyingTypes/typeLiterals/unionTypeLiterals.ts", + "./testTs/test/testts/types/specifyingTypes/typeLiterals/arrayTypeOfFunctionTypes2.ts", + "./testTs/test/testts/types/specifyingTypes/typeLiterals/arrayTypeOfTypeOf.ts", + "./testTs/test/testts/types/specifyingTypes/predefinedTypes/objectTypesWithPredefinedTypesAsName.ts", + "./testTs/test/testts/types/specifyingTypes/predefinedTypes/objectTypesWithPredefinedTypesAsName2.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveIndexingWithForInNoImplicitAny.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveConstraintOfIndexAccessType.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveAssignError.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveInGeneric.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveAsProperty.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveAndTypeVariables.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveStrictNull.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveNarrow.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveUnionIntersection.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveInFunction.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveAccessProperty.ts", + "./testTs/test/testts/types/thisType/thisTypeErrors2.ts", + "./testTs/test/testts/types/thisType/typeRelationships.ts", + "./testTs/test/testts/types/thisType/thisTypeErrors.ts", + "./testTs/test/testts/types/thisType/thisTypeInFunctions.ts", + "./testTs/test/testts/types/thisType/thisTypeAccessibility.ts", + "./testTs/test/testts/types/thisType/thisTypeInAccessorsNegative.ts", + "./testTs/test/testts/types/thisType/unionThisTypeInFunctions.ts", + "./testTs/test/testts/types/thisType/thisTypeInAccessors.ts", + "./testTs/test/testts/types/thisType/thisTypeInFunctions2.ts", + "./testTs/test/testts/types/thisType/looseThisTypeInFunctions.ts", + "./testTs/test/testts/types/thisType/declarationFiles.ts", + "./testTs/test/testts/types/thisType/thisTypeInFunctionsNegative.ts", + "./testTs/test/testts/types/members/typesWithProtectedConstructor.ts", + "./testTs/test/testts/types/members/objectTypeWithConstructSignatureAppearsToBeFunctionType.ts", + "./testTs/test/testts/types/members/objectTypeWithStringIndexerHidingObjectIndexer.ts", + "./testTs/test/testts/types/members/duplicatePropertyNames.ts", + "./testTs/test/testts/types/members/objectTypeHidingMembersOfObjectAssignmentCompat2.ts", + "./testTs/test/testts/types/members/typesWithPublicConstructor.ts", + "./testTs/test/testts/types/members/typesWithPrivateConstructor.ts", + "./testTs/test/testts/types/members/objectTypeWithCallSignatureHidingMembersOfFunctionAssignmentCompat.ts", + "./testTs/test/testts/types/members/indexSignatures1.ts", + "./testTs/test/testts/types/members/duplicateStringIndexers.ts", + "./testTs/test/testts/types/members/augmentedTypeAssignmentCompatIndexSignature.ts", + "./testTs/test/testts/types/members/classWithPrivateProperty.ts", + "./testTs/test/testts/types/members/objectTypeHidingMembersOfObjectAssignmentCompat.ts", + "./testTs/test/testts/types/members/objectTypeWithStringAndNumberIndexSignatureToAny.ts", + "./testTs/test/testts/types/members/objectTypeWithConstructSignatureHidingMembersOfFunctionAssignmentCompat.ts", + "./testTs/test/testts/types/members/objectTypeWithDuplicateNumericProperty.ts", + "./testTs/test/testts/types/members/objectTypeHidingMembersOfExtendedObject.ts", + "./testTs/test/testts/types/members/duplicateNumericIndexers.ts", + "./testTs/test/testts/types/localTypes/localTypes4.ts", + "./testTs/test/testts/types/typeAliases/directDependenceBetweenTypeAliases.ts", + "./testTs/test/testts/types/typeAliases/intrinsicKeyword.ts", + "./testTs/test/testts/types/typeAliases/typeAliasesForObjectTypes.ts", + "./testTs/test/testts/types/typeAliases/intrinsicTypes.ts", + "./testTs/test/testts/types/typeAliases/reservedNamesInAliases.ts", + "./testTs/test/testts/types/typeAliases/typeAliasesDoNotMerge.ts", + "./testTs/test/testts/types/witness/witness.ts", + "./testTs/test/testts/types/mapped/mappedTypeErrors2.ts", + "./testTs/test/testts/types/mapped/mappedTypeErrors.ts", + "./testTs/test/testts/types/mapped/mappedTypes5.ts", + "./testTs/test/testts/types/mapped/recursiveMappedTypes.ts", + "./testTs/test/testts/types/mapped/mappedTypeWithAny.ts", + "./testTs/test/testts/types/mapped/mappedTypeAsClauseRelationships.ts", + "./testTs/test/testts/types/mapped/mappedTypeAsClauses.ts", + "./testTs/test/testts/types/mapped/mappedTypeProperties.ts", + "./testTs/test/testts/types/mapped/mappedTypeRelationships.ts", + "./testTs/test/testts/types/mapped/mappedTypeInferenceErrors.ts", + "./testTs/test/testts/types/mapped/mappedTypes6.ts", + "./testTs/test/testts/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionInferenceError.ts", + "./testTs/test/testts/types/contextualTypes/commaOperator/contextuallyTypeCommaOperator03.ts", + "./testTs/test/testts/types/contextualTypes/commaOperator/contextuallyTypeCommaOperator02.ts", + "./testTs/test/testts/types/contextualTypes/methodDeclarations/contextuallyTypedClassExpressionMethodDeclaration01.ts", + "./testTs/test/testts/types/contextualTypes/methodDeclarations/contextuallyTypedBindingInitializerNegative.ts", + "./testTs/test/testts/types/contextualTypes/methodDeclarations/contextuallyTypedClassExpressionMethodDeclaration02.ts", + "./testTs/test/testts/types/contextualTypes/logicalAnd/contextuallyTypeLogicalAnd03.ts", + "./testTs/test/testts/types/contextualTypes/logicalAnd/contextuallyTypeLogicalAnd02.ts", + "./testTs/test/testts/types/conditional/conditionalTypes1.ts", + "./testTs/test/testts/types/conditional/inferTypes1.ts", + "./testTs/test/testts/types/conditional/conditionalTypesExcessProperties.ts", + "./testTs/test/testts/types/conditional/conditionalTypes2.ts", + "./testTs/test/testts/types/namedTypes/interfaceWithPrivateMember.ts", + "./testTs/test/testts/types/primitives/string/invalidStringAssignments.ts", + "./testTs/test/testts/types/primitives/string/assignFromStringInterface.ts", + "./testTs/test/testts/types/primitives/string/assignFromStringInterface2.ts", + "./testTs/test/testts/types/primitives/string/stringPropertyAccessWithError.ts", + "./testTs/test/testts/types/primitives/number/assignFromNumberInterface2.ts", + "./testTs/test/testts/types/primitives/number/assignFromNumberInterface.ts", + "./testTs/test/testts/types/primitives/number/invalidNumberAssignments.ts", + "./testTs/test/testts/types/primitives/undefined/invalidUndefinedAssignments.ts", + "./testTs/test/testts/types/primitives/undefined/directReferenceToUndefined.ts", + "./testTs/test/testts/types/primitives/void/invalidVoidAssignments.ts", + "./testTs/test/testts/types/primitives/void/invalidAssignmentsToVoid.ts", + "./testTs/test/testts/types/primitives/void/invalidVoidValues.ts", + "./testTs/test/testts/types/primitives/boolean/boolInsteadOfBoolean.ts", + "./testTs/test/testts/types/primitives/boolean/assignFromBooleanInterface2.ts", + "./testTs/test/testts/types/primitives/boolean/assignFromBooleanInterface.ts", + "./testTs/test/testts/types/primitives/boolean/invalidBooleanAssignments.ts", + "./testTs/test/testts/types/primitives/null/validNullAssignments.ts", + "./testTs/test/testts/types/primitives/null/directReferenceToNull.ts", + "./testTs/test/testts/types/primitives/enum/invalidEnumAssignments.ts", + "./testTs/test/testts/types/union/unionTypeMembers.ts", + "./testTs/test/testts/types/union/unionTypeCallSignatures5.ts", + "./testTs/test/testts/types/union/unionTypeReduction2.ts", + "./testTs/test/testts/types/union/unionTypeCallSignatures4.ts", + "./testTs/test/testts/types/union/unionTypeWithIndexSignature.ts", + "./testTs/test/testts/types/union/unionTypeCallSignatures.ts", + "./testTs/test/testts/types/union/unionTypePropertyAccessibility.ts", + "./testTs/test/testts/types/union/unionTypeFromArrayLiteral.ts", + "./testTs/test/testts/types/union/unionTypeEquivalence.ts", + "./testTs/test/testts/types/union/unionTypeReadonly.ts", + "./testTs/test/testts/types/union/unionTypeCallSignatures6.ts", + "./testTs/test/testts/types/union/unionTypeConstructSignatures.ts", + "./testTs/test/testts/types/union/discriminatedUnionTypes1.ts", + "./testTs/test/testts/types/union/discriminatedUnionTypes2.ts", + "./testTs/test/testts/types/union/contextualTypeWithUnionTypeObjectLiteral.ts", + "./testTs/test/testts/types/tuple/strictTupleLength.ts", + "./testTs/test/testts/types/tuple/variadicTuples2.ts", + "./testTs/test/testts/types/tuple/wideningTuples7.ts", + "./testTs/test/testts/types/tuple/unionsOfTupleTypes1.ts", + "./testTs/test/testts/types/tuple/indexerWithTuple.ts", + "./testTs/test/testts/types/tuple/castingTuple.ts", + "./testTs/test/testts/types/tuple/wideningTuples4.ts", + "./testTs/test/testts/types/tuple/readonlyArraysAndTuples.ts", + "./testTs/test/testts/types/tuple/wideningTuples5.ts", + "./testTs/test/testts/types/tuple/optionalTupleElements1.ts", + "./testTs/test/testts/types/tuple/wideningTuples3.ts", + "./testTs/test/testts/types/tuple/arityAndOrderCompatibility01.ts", + "./testTs/test/testts/types/tuple/restTupleElements1.ts", + "./testTs/test/testts/types/tuple/tupleLengthCheck.ts", + "./testTs/test/testts/types/tuple/contextualTypeWithTuple.ts", + "./testTs/test/testts/types/tuple/variadicTuples1.ts", + "./testTs/test/testts/types/tuple/named/namedTupleMembersErrors.ts", + "./testTs/test/testts/types/tuple/emptyTuples/emptyTuplesTypeAssertion02.ts", + "./testTs/test/testts/types/tuple/emptyTuples/emptyTuplesTypeAssertion01.ts", + "./testTs/test/testts/types/keyof/keyofAndIndexedAccess2.ts", + "./testTs/test/testts/types/keyof/circularIndexedAccessErrors.ts", + "./testTs/test/testts/types/keyof/keyofAndIndexedAccessErrors.ts", + "./testTs/test/testts/types/any/anyAsConstructor.ts", + "./testTs/test/testts/types/any/narrowExceptionVariableInCatchClause.ts", + "./testTs/test/testts/types/any/assignAnyToEveryType.ts", + "./testTs/test/testts/types/any/anyAsGenericFunctionCall.ts", + "./testTs/test/testts/types/any/narrowFromAnyWithInstanceof.ts", + "./testTs/test/testts/types/any/narrowFromAnyWithTypePredicate.ts", + "./testTs/test/testts/types/forAwait/types.forAwait.es2018.2.ts", + "./testTs/test/testts/types/forAwait/types.forAwait.es2018.3.ts", + "./testTs/test/testts/types/typeParameters/typeParameterAsBaseType.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/functionConstraintSatisfaction2.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/instantiateGenericClassWithWrongNumberOfTypeArguments.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/callGenericFunctionWithIncorrectNumberOfTypeArguments.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints4.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/callNonGenericFunctionWithTypeArguments.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/instantiateNonGenericTypeWithTypeArguments.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraint2.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/typeParameterDirectlyConstrainedToItself.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/typeParameterIndirectlyConstrainedToItself.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints5.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/staticMembersUsingClassTypeParameter.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/typesWithDuplicateTypeParameters.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints4.ts", + "./testTs/test/testts/types/asyncGenerators/types.asyncGenerators.es2018.2.ts", + "./testTs/test/testts/types/spread/objectSpreadSetonlyAccessor.ts", + "./testTs/test/testts/types/spread/spreadDuplicateExact.ts", + "./testTs/test/testts/types/spread/spreadDuplicate.ts", + "./testTs/test/testts/types/spread/objectSpreadIndexSignature.ts", + "./testTs/test/testts/types/spread/objectSpreadNegative.ts", + "./testTs/test/testts/types/spread/spreadUnion3.ts", + "./testTs/test/testts/types/spread/objectSpreadStrictNull.ts", + "./testTs/test/testts/types/spread/spreadMethods.ts", + "./testTs/test/testts/types/spread/spreadTypeVariable.ts", + "./testTs/test/testts/types/spread/objectSpreadNegativeParse.ts", + "./testTs/test/testts/types/spread/spreadOverwritesPropertyStrict.ts", + "./testTs/test/testts/types/spread/spreadUnion2.ts", + "./testTs/test/testts/types/unknown/unknownType2.ts", + "./testTs/test/testts/types/unknown/unknownType1.ts", + "./testTs/test/testts/types/uniqueSymbol/uniqueSymbolsDeclarationsInJsErrors.ts", + "./testTs/test/testts/types/uniqueSymbol/uniqueSymbolsErrors.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/recursiveTypeReferences1.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/recursiveTypeReferences2.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/objectTypeWithRecursiveWrappedProperty.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/objectTypeWithRecursiveWrappedPropertyCheckedNominally.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/objectTypeWithRecursiveWrappedProperty2.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/infiniteExpansionThroughInstantiation.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer2.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignaturesWithOptionalParameters.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesWithSpecializedSignatures.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers3.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer4.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameter.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer4.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesWithOptionalParameters.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers2.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures6.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesWithRestParameters.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers5.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembers.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersAccessibility2.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality2.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithRecursiveConstraints.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypesOfUnion.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithConstraints.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer3.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/unionSubtypeIfEveryConstituentTypeIsSubtype.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersAccessibility.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/enumIsNotASubtypeOfAnythingButNumber.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithGenericCallSignaturesWithOptionalParameters.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer5.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithNumericIndexer2.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithGenericConstructSignaturesWithOptionalParameters.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithStringIndexer3.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignaturesA.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignaturesWithSpecializedSignatures.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithConstraints4.ts", + "./testTs/test/testts/types/typeRelationships/comparable/switchCaseWithUnionTypes01.ts", + "./testTs/test/testts/types/typeRelationships/comparable/equalityWithEnumTypes.ts", + "./testTs/test/testts/types/typeRelationships/comparable/equalityWithIntersectionTypes01.ts", + "./testTs/test/testts/types/typeRelationships/comparable/typeAssertionsWithUnionTypes01.ts", + "./testTs/test/testts/types/typeRelationships/comparable/equalityStrictNulls.ts", + "./testTs/test/testts/types/typeRelationships/comparable/typeAssertionsWithIntersectionTypes01.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignatures3.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/unionTypeIdentity.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates3.ts", + "./testTs/test/testts/types/typeRelationships/bestCommonType/bestCommonTypeOfTuple2.ts", + "./testTs/test/testts/types/typeRelationships/bestCommonType/bestCommonTypeOfTuple.ts", + "./testTs/test/testts/types/typeRelationships/instanceOf/narrowingGenericTypeFromInstanceof01.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithGenericSignatureArguments3.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints4.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithConstraintsTypeArgumentInference2.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithGenericSignatureArguments2.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithConstructorTypedArguments5.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericClassWithFunctionTypedMemberArguments.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithTupleType.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints3.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/indexSignatureTypeInference.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments2.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/contextualSignatureInstantiation.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithOverloadedFunctionTypedArguments2.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments5.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithOverloadedConstructorTypedArguments2.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectLiteralArgs.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints5.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallToOverloadedMethodWithOverloadedArguments.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectTypeArgs.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/unionTypeInference.ts", + "./testTs/test/testts/types/typeRelationships/apparentType/apparentTypeSubtyping.ts", + "./testTs/test/testts/types/typeRelationships/apparentType/apparentTypeSupertype.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersStringNumericNames.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/typeParameterAssignability2.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersAccessibility.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures5.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignaturesWithOptionalParameters.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures2.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersOptionality2.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignaturesWithOptionalParameters.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatBetweenTupleAndArray.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance3.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer3.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/unionTypesAssignability.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignaturesWithOptionalParameters.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/genericCallWithObjectTypeArgsAndInitializers.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer2.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers5.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance6.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/typeParameterAssignability3.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures2.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/nullAssignedToUndefined.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithNumericIndexer3.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/enumAssignabilityInInheritance.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures6.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/optionalPropertyAssignableToStringIndexSignature.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/covariantCallbacks.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures3.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithNumericIndexer2.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers4.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance6.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/typeParameterAssignability.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures2.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/callSignatureAssignabilityInInheritance3.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithNumericIndexer.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithDiscriminatedUnion.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures4.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures5.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersOptionality.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignaturesWithRestParameters.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures4.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithCallSignatures4.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures6.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithStringIndexer.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/enumAssignability.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithConstructSignatures3.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesOverloadAssignability02.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesWithTemplateStrings02.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesAndLogicalOrExpressions01.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesWithVariousOperators02.ts", + "./testTs/test/testts/types/stringLiteral/typeArgumentsWithStringLiteralTypes01.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesInVariableDeclarations01.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesOverloads05.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesOverloadAssignability01.ts", + "./testTs/test/testts/types/intersection/intersectionReduction.ts", + "./testTs/test/testts/types/intersection/intersectionAsWeakTypeSource.ts", + "./testTs/test/testts/types/intersection/intersectionWithIndexSignatures.ts", + "./testTs/test/testts/types/intersection/intersectionTypeReadonly.ts", + "./testTs/test/testts/types/intersection/intersectionReductionStrict.ts", + "./testTs/test/testts/types/intersection/intersectionTypeInference.ts", + "./testTs/test/testts/types/intersection/intersectionWithUnionConstraint.ts", + "./testTs/test/testts/types/intersection/intersectionAndUnionTypes.ts", + "./testTs/test/testts/types/intersection/intersectionNarrowing.ts", + "./testTs/test/testts/types/intersection/commonTypeIntersection.ts", + "./testTs/test/testts/types/intersection/recursiveIntersectionTypes.ts", + "./testTs/test/testts/types/intersection/intersectionTypeAssignment.ts", + "./testTs/test/testts/types/rest/genericRestArity.ts", + "./testTs/test/testts/types/rest/genericRestArityStrict.ts", + "./testTs/test/testts/types/rest/genericRestParameters1.ts", + "./testTs/test/testts/types/rest/objectRest.ts", + "./testTs/test/testts/types/rest/restTuplesFromContextualTypes.ts", + "./testTs/test/testts/types/rest/objectRestPropertyMustBeLast.ts", + "./testTs/test/testts/types/rest/restElementMustBeLast.ts", + "./testTs/test/testts/types/rest/objectRestNegative.ts", + "./testTs/test/testts/types/rest/genericRestParameters3.ts", + "./testTs/test/testts/pedantic/noUncheckedIndexedAccess.ts", + "./testTs/test/testts/pedantic/noUncheckedIndexedAccessDestructuring.ts", + "./testTs/test/testts/internalModules/codeGeneration/importStatementsInterfaces.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModuleMemberThatUsesClassTypeParameter.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ModuleAndFunctionWithSameNameAndCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticVariableAndExportedVarThatShareAName.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ClassAndModuleWithSameNameAndCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedClassesOfTheSameName.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedLocalVarsOfTheSameName.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndGenericClassStaticFunctionOfTheSameName.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/FunctionAndModuleWithSameNameAndCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedStaticFunctionUsingClassPrivateStatics.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticFunctionAndExportedFunctionThatShareAName.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ClassAndModuleWithSameNameAndCommonRootES6.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ModuleAndClassWithSameNameAndCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithModulesExportedGenericFunctionAndNonGenericClassStaticFunctionOfTheSameName.ts", + "./testTs/test/testts/internalModules/importDeclarations/shadowedInternalModule.ts", + "./testTs/test/testts/internalModules/importDeclarations/invalidImportAliasIdentifiers.ts", + "./testTs/test/testts/internalModules/importDeclarations/circularImportAlias.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedVariables.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedClasses.ts", + "./testTs/test/testts/internalModules/exportDeclarations/NonInitializedExportInInternalModule.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedEnums.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedImportAlias.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ModuleWithExportedAndNonExportedFunctions.ts", + "./testTs/test/testts/internalModules/moduleDeclarations/invalidInstantiatedModule.ts", + "./testTs/test/testts/internalModules/moduleDeclarations/invalidNestedModules.ts", + "./testTs/test/testts/internalModules/moduleDeclarations/InvalidNonInstantiatedModule.ts", + "./testTs/test/testts/internalModules/moduleBody/invalidModuleWithVarStatements.ts", + "./testTs/test/testts/internalModules/moduleBody/invalidModuleWithStatementsOfEveryKind.ts", + "./testTs/test/testts/classes/mixinAccessModifiers.ts", + "./testTs/test/testts/classes/awaitAndYieldInProperty.ts", + "./testTs/test/testts/classes/mixinAbstractClasses.2.ts", + "./testTs/test/testts/classes/nestedClassDeclaration.ts", + "./testTs/test/testts/classes/indexMemberDeclarations/privateIndexer.ts", + "./testTs/test/testts/classes/indexMemberDeclarations/publicIndexer.ts", + "./testTs/test/testts/classes/indexMemberDeclarations/privateIndexer2.ts", + "./testTs/test/testts/classes/indexMemberDeclarations/staticIndexers.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock7.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock16.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock6.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock3.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlockUseBeforeDef2.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock20.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock8.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock19.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock4.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock26.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock23.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock22.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/assignParameterPropertyToPropertyDeclarationESNext.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/definePropertyOutputES3.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/accessorsOverrideProperty6.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/accessorsOverrideProperty3.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/constructorParameterShadowsOuterScopes.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/initializerReferencingConstructorLocals.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/redefinedPararameterProperty.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/propertyOverridesAccessors.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/accessorsOverrideProperty4.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/propertyAndFunctionWithSameName.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/initializerReferencingConstructorParameters.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/propertyOverridesAccessors5.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/constructorParameterShadowsOuterScopes2.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/strictPropertyInitialization.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/propertyAndAccessorWithSameName.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/propertyOverridesAccessors3.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/propertyOverridesAccessors2.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/redeclaredProperty.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/twoAccessorsWithSameName2.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/propertyNamedPrototype.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/accessorsOverrideProperty.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/staticPropertyNameConflicts.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/accessorsOverrideProperty7.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/accessorsOverrideProperty2.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/accessorsOverrideMethod.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/propertyOverridesAccessors4.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/derivedUninitializedPropertyDeclaration.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/abstractPropertyInitializer.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/twoAccessorsWithSameName.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/propertyNamedConstructor.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/accessibilityModifiers.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberFunctionDeclarations/instanceMemberAssignsToClassPrototype.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberFunctionDeclarations/staticMemberAssignsToConstructorFunctionMembers.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionOverloadMixingStaticAndInstance.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberFunctionDeclarations/derivedTypeAccessesHiddenBaseCallViaSuperPropertyAccess.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPrivateOverloads.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPublicPrivateOverloads.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorWithES3.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberAccessorDeclarations/typeOfThisInAccessor.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorsAreNotContextuallyTyped.ts", + "./testTs/test/testts/classes/members/constructorFunctionTypes/classWithStaticMembers.ts", + "./testTs/test/testts/classes/members/constructorFunctionTypes/classWithBaseClassButNoConstructor.ts", + "./testTs/test/testts/classes/members/constructorFunctionTypes/classWithConstructors.ts", + "./testTs/test/testts/classes/members/accessibility/privateProtectedMembersAreNotAccessibleDestructuring.ts", + "./testTs/test/testts/classes/members/accessibility/protectedStaticNotAccessibleInClodule.ts", + "./testTs/test/testts/classes/members/accessibility/privateStaticNotAccessibleInClodule2.ts", + "./testTs/test/testts/classes/members/accessibility/privateStaticNotAccessibleInClodule.ts", + "./testTs/test/testts/classes/members/accessibility/protectedClassPropertyAccessibleWithinNestedSubclass1.ts", + "./testTs/test/testts/classes/members/accessibility/privateClassPropertyAccessibleWithinClass.ts", + "./testTs/test/testts/classes/members/accessibility/protectedClassPropertyAccessibleWithinSubclass2.ts", + "./testTs/test/testts/classes/members/accessibility/protectedStaticClassPropertyAccessibleWithinSubclass2.ts", + "./testTs/test/testts/classes/members/accessibility/privateInstanceMemberAccessibility.ts", + "./testTs/test/testts/classes/members/accessibility/protectedInstanceMemberAccessibility.ts", + "./testTs/test/testts/classes/members/accessibility/classPropertyAsPrivate.ts", + "./testTs/test/testts/classes/members/accessibility/classPropertyIsPublicByDefault.ts", + "./testTs/test/testts/classes/members/accessibility/privateStaticMemberAccessibility.ts", + "./testTs/test/testts/classes/members/accessibility/protectedClassPropertyAccessibleWithinNestedSubclass.ts", + "./testTs/test/testts/classes/members/accessibility/classPropertyAsProtected.ts", + "./testTs/test/testts/classes/members/accessibility/protectedClassPropertyAccessibleWithinSubclass3.ts", + "./testTs/test/testts/classes/members/accessibility/protectedStaticClassPropertyAccessibleWithinSubclass.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers6.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInInstanceMember2.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInInstanceMember.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInstanceMemberNarrowedWithLoopAntecedent.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassTransitivity3.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassTransitivity.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassWithPrivateStaticShadowingPublicStatic.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers4.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers3.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedGenericClassWithAny.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassOverridesPublicMembers.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassWithPrivateInstanceShadowingPublicInstance.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassFunctionOverridesBaseClassAccessor.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassWithPrivateStaticShadowingProtectedStatic.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassWithAny.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassOverridesPrivates.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassIncludesInheritedMembers.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassWithPrivateInstanceShadowingProtectedInstance.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassTransitivity4.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassTransitivity2.ts", + "./testTs/test/testts/classes/members/classTypes/staticPropertyNotInClassType.ts", + "./testTs/test/testts/classes/members/classTypes/instancePropertyInClassType.ts", + "./testTs/test/testts/classes/members/classTypes/instancePropertiesInheritedIntoClassType.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameInObjectLiteral-2.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameMethodsDerivedClasses.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesNotAllowedInVariableDeclarations.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameJsBadDeclaration.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticFieldDerivedClasses.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameInInExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameAndAny.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameConstructorReserved.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameUnused.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesNoDelete.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesAndGenericClasses-2.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesUnique-5.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesAndDecorators.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameMethodClassExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesUnique-1.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameMethodAccess.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesUnique-2.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameImplicitDeclaration.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameEnum.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameMethodAssignment.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesUnique-4.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesUnique-3.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticAccessorssDerivedClasses.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesUseBeforeDef.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesConstructorChain-2.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameNestedClassFieldShadowing.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesIncompatibleModifiersJs.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameSetterNoGetter.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesInNestedClasses-1.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameNotAllowedOutsideClass.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesAndStaticFields.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticMethodAsync.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameMethod.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesInNestedClasses-2.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesAndIndexedAccess.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesNotAllowedAsParameters.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameFieldDerivedClasses.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameCircularReference.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameNestedClassAccessorsShadowing.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameAndPropertySignature.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameAccessorsAccess.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameNotAccessibleOutsideDefiningClass.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameAccessorssDerivedClasses.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameNestedClassMethodShadowing.ts", + "./testTs/test/testts/classes/members/privateNames/privateWriteOnlyAccessorRead.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticMethod.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameUncheckedJsOptionalChain.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticAccessors.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameNestedMethodAccess.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameAmbientNoImplicitAny.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameHashCharName.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameAccessors.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameBadAssignment.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameJsBadAssignment.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameFieldsESNext.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesIncompatibleModifiers.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameReadonly.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesInterfaceExtendingClass.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameBadDeclaration.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticAccessorsAccess.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameInObjectLiteral-3.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesInGenericClasses.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticMethodAssignment.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticMethodClassExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameBadSuper.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameAndIndexSignature.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticFieldAccess.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticEmitHelpers.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameAndObjectRestSpread.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameDeclarationMerging.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameInInExpressionUnused.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameInObjectLiteral-1.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameEmitHelpers.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesAndkeyof.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameDuplicateField.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesConstructorChain-1.ts", + "./testTs/test/testts/classes/constructorDeclarations/classConstructorAccessibility3.ts", + "./testTs/test/testts/classes/constructorDeclarations/classConstructorOverloadsAccessibility.ts", + "./testTs/test/testts/classes/constructorDeclarations/classConstructorParametersAccessibility2.ts", + "./testTs/test/testts/classes/constructorDeclarations/classConstructorAccessibility5.ts", + "./testTs/test/testts/classes/constructorDeclarations/classConstructorAccessibility.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorWithAssignableReturnExpression.ts", + "./testTs/test/testts/classes/constructorDeclarations/classConstructorAccessibility2.ts", + "./testTs/test/testts/classes/constructorDeclarations/classWithTwoConstructorDefinitions.ts", + "./testTs/test/testts/classes/constructorDeclarations/classConstructorParametersAccessibility.ts", + "./testTs/test/testts/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor3.ts", + "./testTs/test/testts/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor.ts", + "./testTs/test/testts/classes/constructorDeclarations/automaticConstructors/derivedClassWithoutExplicitConstructor2.ts", + "./testTs/test/testts/classes/constructorDeclarations/automaticConstructors/classWithoutExplicitConstructor.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorParameters/constructorParameterProperties2.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorParameters/constructorImplementationWithDefaultValues2.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorParameters/constructorParameterProperties.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorParameters/constructorDefaultValuesReferencingThis.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorParameters/readonlyReadonly.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorParameters/readonlyConstructorAssignment.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorParameters/constructorOverloadsWithDefaultValues.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorParameters/readonlyInAmbientClass.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorParameters/readonlyInConstructorParameters.ts", + "./testTs/test/testts/classes/constructorDeclarations/superCalls/derivedClassSuperCallsInNonConstructorMembers.ts", + "./testTs/test/testts/classes/constructorDeclarations/superCalls/superCallInConstructorWithNoBaseType.ts", + "./testTs/test/testts/classes/constructorDeclarations/superCalls/derivedClassParameterProperties.ts", + "./testTs/test/testts/classes/constructorDeclarations/superCalls/derivedClassConstructorWithoutSuperCall.ts", + "./testTs/test/testts/classes/constructorDeclarations/superCalls/superPropertyInConstructorBeforeSuperCall.ts", + "./testTs/test/testts/classes/constructorDeclarations/superCalls/derivedClassSuperCallsWithThisArg.ts", + "./testTs/test/testts/classes/staticIndexSignature/staticIndexSignature7.ts", + "./testTs/test/testts/classes/staticIndexSignature/staticIndexSignature4.ts", + "./testTs/test/testts/classes/staticIndexSignature/staticIndexSignature3.ts", + "./testTs/test/testts/classes/staticIndexSignature/staticIndexSignature5.ts", + "./testTs/test/testts/classes/staticIndexSignature/staticIndexSignature2.ts", + "./testTs/test/testts/classes/staticIndexSignature/staticIndexSignature1.ts", + "./testTs/test/testts/classes/classDeclarations/declaredClassMergedwithSelf.ts", + "./testTs/test/testts/classes/classDeclarations/classExtendingNonConstructor.ts", + "./testTs/test/testts/classes/classDeclarations/classAndVariableWithSameName.ts", + "./testTs/test/testts/classes/classDeclarations/classAndInterfaceMergeConflictingMembers.ts", + "./testTs/test/testts/classes/classDeclarations/classWithPredefinedTypesAsNames.ts", + "./testTs/test/testts/classes/classDeclarations/classExtendingClassLikeType.ts", + "./testTs/test/testts/classes/classDeclarations/classWithPredefinedTypesAsNames2.ts", + "./testTs/test/testts/classes/classDeclarations/classImplementsMergedClassInterface.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractInstantiations2.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractMixedWithModifiers.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractUsingAbstractMethod1.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractManyKeywords.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractSingleLineDecl.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractConstructor.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractMergedDeclaration.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractMethodWithImplementation.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractInstantiations1.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractOverrideWithAbstract.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractClinterfaceAssignability.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractSuperCalls.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractExtends.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractOverloads.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractFactoryFunction.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractProperties.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractInheritance.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractImportInstantiation.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractUsingAbstractMethods2.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractInAModule.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractMethodInNonAbstractClass.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractGeneric.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractCrashedOnce.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractAccessor.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractAssignabilityConstructorFunction.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractWithInterface.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractDeclarations.d.ts", + "./testTs/test/testts/classes/classDeclarations/classAbstractKeyword/classAbstractConstructorAssignability.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendsValidConstructorFunction.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendingOptionalChain.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendsItselfIndirectly.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendsEveryObjectType2.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendsShadowedConstructorFunction.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classIsSubtypeOfBaseType.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendsItselfIndirectly2.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendsItselfIndirectly3.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendingPrimitive.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendsItself.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendsEveryObjectType.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendingPrimitive2.ts", + "./testTs/test/testts/classes/classDeclarations/classBody/classBodyWithStatements.ts", + "./testTs/test/testts/jsx/jsxUnclosedParserRecovery.ts", + "./testTs/test/testts/references/library-reference-15.ts", + "./testTs/test/testts/references/library-reference-5.ts", + "./testTs/test/testts/es7/trailingCommasInBindingPatterns.ts", + "./testTs/test/testts/es7/trailingCommasInGetter.ts", + "./testTs/test/testts/es7/trailingCommasInFunctionParametersAndArguments.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorInTemplateStringWithSyntaxError3.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithNullValueAndValidOperands.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithNew.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithNullValueAndInvalidOperands.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorSyntaxError1.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithInvalidOperands.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorInTemplateStringWithSyntaxError1.ts", + "./testTs/test/testts/es7/exponentiationOperator/compoundExponentiationAssignmentLHSIsValue.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorSyntaxError2.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithTemplateStringInvalidES6.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithUndefinedValueAndValidOperands.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithUndefinedValueAndInvalidOperands.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithInvalidSimpleUnaryExpressionOperands.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithTypeParameter.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperator4.ts", + "./testTs/test/testts/es7/exponentiationOperator/compoundExponentiationAssignmentLHSCanBeAssigned1.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithTemplateStringInvalid.ts", + "./testTs/test/testts/es7/exponentiationOperator/compoundExponentiationAssignmentLHSCannotBeAssigned.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithOnlyNullValueOrUndefinedValue.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorInTemplateStringWithSyntaxError2.ts", + "./testTs/test/testts/ambient/ambientDeclarationsPatterns_merging2.ts", + "./testTs/test/testts/ambient/ambientExternalModuleInsideNonAmbientExternalModule.ts", + "./testTs/test/testts/ambient/ambientDeclarationsPatterns_tooManyAsterisks.ts", + "./testTs/test/testts/ambient/ambientExternalModuleInsideNonAmbient.ts", + "./testTs/test/testts/ambient/ambientDeclarationsPatterns_merging3.ts", + "./testTs/test/testts/ambient/ambientErrors.ts", + "./testTs/test/testts/ambient/ambientDeclarationsPatterns_merging1.ts", + "./testTs/test/testts/externalModules/moduleResolutionWithoutExtension7.ts", + "./testTs/test/testts/externalModules/moduleResolutionWithoutExtension2.ts", + "./testTs/test/testts/externalModules/exportNonInitializedVariablesES6.ts", + "./testTs/test/testts/externalModules/multipleExportDefault2.ts", + "./testTs/test/testts/externalModules/importNonExternalModule.ts", + "./testTs/test/testts/externalModules/topLevelFileModuleMissing.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.11.ts", + "./testTs/test/testts/externalModules/umd-errors.ts", + "./testTs/test/testts/externalModules/umd8.ts", + "./testTs/test/testts/externalModules/multipleExportDefault1.ts", + "./testTs/test/testts/externalModules/exportClassNameWithObjectAMD.ts", + "./testTs/test/testts/externalModules/moduleResolutionWithoutExtension3.ts", + "./testTs/test/testts/externalModules/exportNonLocalDeclarations.ts", + "./testTs/test/testts/externalModules/circularReference.ts", + "./testTs/test/testts/externalModules/moduleResolutionWithoutExtension4.ts", + "./testTs/test/testts/externalModules/multipleExportDefault6.ts", + "./testTs/test/testts/externalModules/exportNonInitializedVariablesUMD.ts", + "./testTs/test/testts/externalModules/initializersInDeclarations.ts", + "./testTs/test/testts/externalModules/umd5.ts", + "./testTs/test/testts/externalModules/exportAssignmentConstrainedGenericType.ts", + "./testTs/test/testts/externalModules/exportClassNameWithObjectUMD.ts", + "./testTs/test/testts/externalModules/multipleExportDefault5.ts", + "./testTs/test/testts/externalModules/topLevelModuleDeclarationAndFile.ts", + "./testTs/test/testts/externalModules/exportNonInitializedVariablesSystem.ts", + "./testTs/test/testts/externalModules/moduleResolutionWithoutExtension6.ts", + "./testTs/test/testts/externalModules/duplicateExportAssignments.ts", + "./testTs/test/testts/externalModules/multipleExportDefault3.ts", + "./testTs/test/testts/externalModules/importsImplicitlyReadonly.ts", + "./testTs/test/testts/externalModules/moduleResolutionWithoutExtension8.ts", + "./testTs/test/testts/externalModules/importTsBeforeDTs.ts", + "./testTs/test/testts/externalModules/invalidSyntaxNamespaceImportWithCommonjs.ts", + "./testTs/test/testts/externalModules/exportAssignmentAndDeclaration.ts", + "./testTs/test/testts/externalModules/invalidSyntaxNamespaceImportWithAMD.ts", + "./testTs/test/testts/externalModules/relativePathMustResolve.ts", + "./testTs/test/testts/externalModules/moduleResolutionWithoutExtension1.ts", + "./testTs/test/testts/externalModules/exportClassNameWithObjectCommonJS.ts", + "./testTs/test/testts/externalModules/invalidSyntaxNamespaceImportWithSystem.ts", + "./testTs/test/testts/externalModules/exportAssignNonIdentifier.ts", + "./testTs/test/testts/externalModules/typesOnlyExternalModuleStillHasInstance.ts", + "./testTs/test/testts/externalModules/multipleExportDefault4.ts", + "./testTs/test/testts/externalModules/umd2.ts", + "./testTs/test/testts/externalModules/exportNonInitializedVariablesCommonJS.ts", + "./testTs/test/testts/externalModules/importNonStringLiteral.ts", + "./testTs/test/testts/externalModules/exportDefaultClassNameWithObject.ts", + "./testTs/test/testts/externalModules/exportClassNameWithObjectSystem.ts", + "./testTs/test/testts/externalModules/moduleResolutionWithoutExtension5.ts", + "./testTs/test/testts/externalModules/exportNonInitializedVariablesAMD.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target10.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target9.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target10.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target9.ts", + "./testTs/test/testts/externalModules/typeOnly/filterNamespace_import.ts", + "./testTs/test/testts/externalModules/typeOnly/importEqualsDeclaration.ts", + "./testTs/test/testts/externalModules/typeOnly/grammarErrors.ts", + "./testTs/test/testts/externalModules/typeOnly/chained.ts", + "./testTs/test/testts/externalModules/typeOnly/enums.ts", + "./testTs/test/testts/externalModules/typeOnly/exportDefault.ts", + "./testTs/test/testts/externalModules/typeOnly/exportDeclaration_missingBraces.ts", + "./testTs/test/testts/externalModules/typeOnly/importEquals1.ts", + "./testTs/test/testts/externalModules/typeOnly/exportDeclaration.ts", + "./testTs/test/testts/externalModules/typeOnly/importClause_default.ts", + "./testTs/test/testts/externalModules/typeOnly/importEquals3.ts", + "./testTs/test/testts/externalModules/typeOnly/importsNotUsedAsValues_error.ts", + "./testTs/test/testts/externalModules/typeOnly/exportDeclaration_moduleSpecifier.ts", + "./testTs/test/testts/externalModules/typeOnly/chained2.ts", + "./testTs/test/testts/externalModules/typeOnly/importClause_namedImports.ts", + "./testTs/test/testts/externalModules/typeOnly/generic.ts", + "./testTs/test/testts/externalModules/typeOnly/namespaceMemberAccess.ts", + "./testTs/test/testts/externalModules/typeOnly/importSpecifiers1.ts", + "./testTs/test/testts/externalModules/typeOnly/circular3.ts", + "./testTs/test/testts/externalModules/typeOnly/circular4.ts", + "./testTs/test/testts/externalModules/typeOnly/importEquals2.ts", + "./testTs/test/testts/externalModules/typeOnly/computedPropertyName.ts", + "./testTs/test/testts/externalModules/typeOnly/circular2.ts", + "./testTs/test/testts/externalModules/typeOnly/exportNamespace4.ts", + "./testTs/test/testts/externalModules/typeOnly/preserveValueImports_mixedImports.ts", + "./testTs/test/testts/externalModules/typeOnly/exportSpecifiers.ts", + "./testTs/test/testts/externalModules/typeOnly/importClause_namespaceImport.ts", + "./testTs/test/testts/externalModules/typeOnly/namespaceImportTypeQuery.ts", + "./testTs/test/testts/externalModules/typeOnly/circular1.ts", + "./testTs/test/testts/externalModules/typeOnly/exportNamespace2.ts", + "./testTs/test/testts/externalModules/typeOnly/extendsClause.ts", + "./testTs/test/testts/externalModules/typeOnly/exportNamespace1.ts", + "./testTs/test/testts/externalModules/typeOnly/exportNamespace3.ts", + "./testTs/test/testts/externalModules/typeOnly/renamed.ts", + "./testTs/test/testts/es2017/useObjectValuesAndEntries3.ts", + "./testTs/test/testts/es2017/useSharedArrayBuffer6.ts", + "./testTs/test/testts/es2017/useSharedArrayBuffer3.ts", + "./testTs/test/testts/es2017/useObjectValuesAndEntries2.ts", + "./testTs/test/testts/es2017/useSharedArrayBuffer2.ts", + "./testTs/test/testts/async/es2017/await_unaryExpression_es2017_1.ts", + "./testTs/test/testts/async/es2017/await_unaryExpression_es2017_3.ts", + "./testTs/test/testts/async/es2017/asyncAwaitIsolatedModules_es2017.ts", + "./testTs/test/testts/async/es2017/await_unaryExpression_es2017_2.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration7_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration5_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration10_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration3_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration6_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration8_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration12_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration9_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration13_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunction9_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunction10_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunction8_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunction6_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunction7_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunction_allowJs.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunction5_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunction3_es2017.ts", + "./testTs/test/testts/async/es5/asyncSetter_es5.ts", + "./testTs/test/testts/async/es5/asyncDeclare_es5.ts", + "./testTs/test/testts/async/es5/asyncAliasReturnType_es5.ts", + "./testTs/test/testts/async/es5/asyncInterface_es5.ts", + "./testTs/test/testts/async/es5/asyncConstructor_es5.ts", + "./testTs/test/testts/async/es5/asyncModule_es5.ts", + "./testTs/test/testts/async/es5/asyncEnum_es5.ts", + "./testTs/test/testts/async/es5/asyncClass_es5.ts", + "./testTs/test/testts/async/es5/asyncGetter_es5.ts", + "./testTs/test/testts/async/es5/asyncAwaitIsolatedModules_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration10_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration6_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclarationCapturesArguments_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration13_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration12_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration9_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration5_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration8_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration3_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration7_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration15_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunction5_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunction8_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunction10_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunction6_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunction9_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunctionCapturesArguments_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunction7_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunction3_es5.ts", + "./testTs/test/testts/async/es6/asyncClass_es6.ts", + "./testTs/test/testts/async/es6/asyncGetter_es6.ts", + "./testTs/test/testts/async/es6/asyncInterface_es6.ts", + "./testTs/test/testts/async/es6/asyncAwaitIsolatedModules_es6.ts", + "./testTs/test/testts/async/es6/await_unaryExpression_es6_1.ts", + "./testTs/test/testts/async/es6/asyncSetter_es6.ts", + "./testTs/test/testts/async/es6/asyncImportedPromise_es6.ts", + "./testTs/test/testts/async/es6/asyncConstructor_es6.ts", + "./testTs/test/testts/async/es6/asyncDeclare_es6.ts", + "./testTs/test/testts/async/es6/asyncEnum_es6.ts", + "./testTs/test/testts/async/es6/await_unaryExpression_es6_3.ts", + "./testTs/test/testts/async/es6/asyncQualifiedReturnType_es6.ts", + "./testTs/test/testts/async/es6/asyncModule_es6.ts", + "./testTs/test/testts/async/es6/await_unaryExpression_es6_2.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration7_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration3_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncOrYieldAsBindingIdentifier1.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration12_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration15_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration5_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration10_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration6_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration8_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration9_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration13_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunction10_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunction7_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunction6_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunction8_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunction9_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunction3_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunction5_es6.ts", + "./testTs/test/testts/additionalChecks/noPropertyAccessFromIndexSignature1.ts", + "./testTs/test/testts/typings/typingsSuggestion2.ts", + "./testTs/test/testts/typings/typingsSuggestion1.ts", + "./testTs/test/testts/dynamicImport/importCallExpression5ES2020.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionCheckReturntype1.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedES2015.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNoModuleKindSpecified.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionIncorrect1.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionWithTypeArgument.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedES20152.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInScriptContext2.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionGrammarError.ts", + "./testTs/test/testts/dynamicImport/importCallExpression6ES2020.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionErrorInES2015.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionSpecifierNotStringTypeError.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionIncorrect2.ts", + "./testTs/test/testts/jsdoc/jsdocReadonly.ts", + "./testTs/test/testts/jsdoc/jsdocOverrideTag1.ts", + "./testTs/test/testts/jsdoc/jsdocOuterTypeParameters3.ts", + "./testTs/test/testts/jsdoc/jsdocPrivateName1.ts", + "./testTs/test/testts/jsdoc/jsdocImplements_class.ts", + "./testTs/test/testts/jsdoc/assertionsAndNonReturningFunctions.ts", + "./testTs/test/testts/jsdoc/jsdocTemplateClass.ts", + "./testTs/test/testts/jsdoc/paramTagWrapping.ts", + "./testTs/test/testts/jsdoc/typeTagPrototypeAssignment.ts", + "./testTs/test/testts/jsdoc/typedefOnStatements.ts", + "./testTs/test/testts/jsdoc/paramTagNestedWithoutTopLevelObject.ts", + "./testTs/test/testts/jsdoc/checkJsdocTypeTag6.ts", + "./testTs/test/testts/jsdoc/checkJsdocReturnTag2.ts", + "./testTs/test/testts/jsdoc/jsdocDisallowedInTypescript.ts", + "./testTs/test/testts/jsdoc/callOfPropertylessConstructorFunction.ts", + "./testTs/test/testts/jsdoc/checkJsdocTypedefOnlySourceFile.ts", + "./testTs/test/testts/jsdoc/jsdocImplements_missingType.ts", + "./testTs/test/testts/jsdoc/jsdocTypeTagParameterType.ts", + "./testTs/test/testts/jsdoc/typedefTagWrapping.ts", + "./testTs/test/testts/jsdoc/jsdocFunction_missingReturn.ts", + "./testTs/test/testts/jsdoc/paramTagNestedWithoutTopLevelObject2.ts", + "./testTs/test/testts/jsdoc/jsdocAugments_nameMismatch.ts", + "./testTs/test/testts/jsdoc/extendsTag2.ts", + "./testTs/test/testts/jsdoc/jsdocPrototypePropertyAccessWithType.ts", + "./testTs/test/testts/jsdoc/extendsTagEmit.ts", + "./testTs/test/testts/jsdoc/errorOnFunctionReturnType.ts", + "./testTs/test/testts/jsdoc/jsdocTypeTagRequiredParameters.ts", + "./testTs/test/testts/jsdoc/jsdocCatchClauseWithTypeAnnotation.ts", + "./testTs/test/testts/jsdoc/typedefScope1.ts", + "./testTs/test/testts/jsdoc/jsdocTemplateTag3.ts", + "./testTs/test/testts/jsdoc/jsdocOuterTypeParameters2.ts", + "./testTs/test/testts/jsdoc/jsdocAugments_errorInExtendsExpression.ts", + "./testTs/test/testts/jsdoc/callbackTag2.ts", + "./testTs/test/testts/jsdoc/syntaxErrors.ts", + "./testTs/test/testts/jsdoc/typedefMultipleTypeParameters.ts", + "./testTs/test/testts/jsdoc/checkExportsObjectAssignProperty.ts", + "./testTs/test/testts/jsdoc/checkJsdocTypeTagOnObjectProperty2.ts", + "./testTs/test/testts/jsdoc/jsdocIndexSignature.ts", + "./testTs/test/testts/jsdoc/jsdocTemplateTagDefault.ts", + "./testTs/test/testts/jsdoc/typeTagNoErasure.ts", + "./testTs/test/testts/jsdoc/checkOtherObjectAssignProperty.ts", + "./testTs/test/testts/jsdoc/checkObjectDefineProperty.ts", + "./testTs/test/testts/jsdoc/typedefTagTypeResolution.ts", + "./testTs/test/testts/jsdoc/jsdocParseErrorsInTypescript.ts", + "./testTs/test/testts/jsdoc/jsdocAugments_notAClass.ts", + "./testTs/test/testts/jsdoc/paramTagNestedWithoutTopLevelObject3.ts", + "./testTs/test/testts/jsdoc/jsdocTemplateConstructorFunction2.ts", + "./testTs/test/testts/jsdoc/constructorTagOnObjectLiteralMethod.ts", + "./testTs/test/testts/jsdoc/checkJsdocOptionalParamOrder.ts", + "./testTs/test/testts/jsdoc/checkJsdocOnEndOfFile.ts", + "./testTs/test/testts/jsdoc/jsdocImplements_properties.ts", + "./testTs/test/testts/jsdoc/typedefCrossModule5.ts", + "./testTs/test/testts/jsdoc/jsdocOuterTypeParameters1.ts", + "./testTs/test/testts/jsdoc/paramTagNestedWithoutTopLevelObject4.ts", + "./testTs/test/testts/jsdoc/jsdocParseDotDotDotInJSDocFunction.ts", + "./testTs/test/testts/jsdoc/noAssertForUnparseableTypedefs.ts", + "./testTs/test/testts/jsdoc/checkJsdocTypeTag1.ts", + "./testTs/test/testts/jsdoc/jsdocTemplateTag.ts", + "./testTs/test/testts/jsdoc/checkJsdocTypeTag5.ts", + "./testTs/test/testts/jsdoc/jsdocPostfixEqualsAddsOptionality.ts", + "./testTs/test/testts/jsdoc/jsdocPrivateName2.ts", + "./testTs/test/testts/jsdoc/jsdocParamTag2.ts", + "./testTs/test/testts/jsdoc/jsdocTypeFromChainedAssignment2.ts", + "./testTs/test/testts/jsdoc/enumTag.ts", + "./testTs/test/testts/jsdoc/jsdocTypeFromChainedAssignment.ts", + "./testTs/test/testts/jsdoc/typedefDuplicateTypeDeclaration.ts", + "./testTs/test/testts/jsdoc/checkJsdocTypeTag2.ts", + "./testTs/test/testts/jsdoc/typedefCrossModule3.ts", + "./testTs/test/testts/jsdoc/typedefCrossModule2.ts", + "./testTs/test/testts/jsdoc/jsdocImplements_interface.ts", + "./testTs/test/testts/jsdoc/jsdocParseBackquotedParamName.ts", + "./testTs/test/testts/jsdoc/noDuplicateJsdoc1.ts", + "./testTs/test/testts/jsdoc/typedefInnerNamepaths.ts", + "./testTs/test/testts/jsdoc/enumTagCircularReference.ts", + "./testTs/test/testts/jsdoc/checkJsdocTypeTag4.ts", + "./testTs/test/testts/jsdoc/jsdocAccessibilityTags.ts", + "./testTs/test/testts/jsdoc/typeTagCircularReferenceOnConstructorFunction.ts", + "./testTs/test/testts/jsdoc/jsdocImplements_signatures.ts", + "./testTs/test/testts/jsdoc/checkExportsObjectAssignPrototypeProperty.ts", + "./testTs/test/testts/jsdoc/extendsTag4.ts", + "./testTs/test/testts/jsdoc/jsdocPrefixPostfixParsing.ts", + "./testTs/test/testts/jsdoc/jsdocTypeTagCast.ts", + "./testTs/test/testts/jsdoc/jsdocTemplateTagNameResolution.ts", + "./testTs/test/testts/jsdoc/jsdocImplements_interface_multiple.ts", + "./testTs/test/testts/jsdoc/typeTagModuleExports.ts", + "./testTs/test/testts/jsdoc/typedefCrossModule4.ts", + "./testTs/test/testts/jsdoc/paramTagOnFunctionUsingArguments.ts", + "./testTs/test/testts/jsdoc/jsdocParamTagTypeLiteral.ts", + "./testTs/test/testts/jsdoc/jsdocFunctionType.ts", + "./testTs/test/testts/jsdoc/jsdocAugmentsMissingType.ts", + "./testTs/test/testts/jsdoc/jsdocTemplateConstructorFunction.ts", + "./testTs/test/testts/jsdoc/jsdocAugments_noExtends.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsCrossfileMerge.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsInterfaces.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignedConstructorFunctionWithSub.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsTypeReferences4.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsTypeReassignmentFromDeclaration2.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsParameterTagReusesInputNodeInEmit1.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsDefaultsErr.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsClassLikeHeuristic.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportFormsErr.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsClassesErr.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsEnums.ts", + "./testTs/test/testts/override/override15.ts", + "./testTs/test/testts/override/override_js2.ts", + "./testTs/test/testts/override/overrideWithoutNoImplicitOverride1.ts", + "./testTs/test/testts/override/override11.ts", + "./testTs/test/testts/override/override_js4.ts", + "./testTs/test/testts/override/overrideKeywordOrder.ts", + "./testTs/test/testts/override/override4.ts", + "./testTs/test/testts/override/override1.ts", + "./testTs/test/testts/override/override20.ts", + "./testTs/test/testts/override/override7.ts", + "./testTs/test/testts/override/override3.ts", + "./testTs/test/testts/override/overrideParameterProperty.ts", + "./testTs/test/testts/override/override13.ts", + "./testTs/test/testts/override/override6.ts", + "./testTs/test/testts/override/override8.ts", + "./testTs/test/testts/override/override9.ts", + "./testTs/test/testts/override/override19.ts", + "./testTs/test/testts/override/override_js3.ts", + "./testTs/test/testts/override/override2.ts", + "./testTs/test/testts/override/override5.ts", + "./testTs/test/testts/es2019/globalThisPropertyAssignment.ts", + "./testTs/test/testts/es2019/globalThisCollision.ts", + "./testTs/test/testts/es2019/globalThisBlockscopedProperties.ts", + "./testTs/test/testts/es2019/globalThisGlobalExportAsGlobal.ts", + "./testTs/test/testts/es2019/globalThisVarDeclaration.ts", + "./testTs/test/testts/es2019/globalThisReadonlyProperties.ts", + "./testTs/test/testts/es2019/globalThisUnknownNoImplicitAny.ts", + "./testTs/test/testts/es2019/globalThisUnknown.ts", + "./testTs/test/testts/directives/ts-expect-error.ts", + "./testTs/test/testts/directives/ts-expect-error-js.ts", + "./testTs/test/testts/directives/ts-ignore.ts", + "./testTs/test/testts/expressions/conditonalOperator/conditionalOperatorWithoutIdenticalBCT.ts", + "./testTs/test/testts/expressions/conditonalOperator/conditionalOperatorConditionIsObjectType.ts", + "./testTs/test/testts/expressions/objectLiterals/objectLiteralGettersAndSetters.ts", + "./testTs/test/testts/expressions/objectLiterals/objectLiteralErrorsES3.ts", + "./testTs/test/testts/expressions/objectLiterals/objectLiteralNormalization.ts", + "./testTs/test/testts/expressions/objectLiterals/objectLiteralErrors.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsWithInstanceOfByConstructorSignature.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardInClass.ts", + "./testTs/test/testts/expressions/typeGuards/typePredicateOnVariableDeclaration02.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormThisMemberErrors.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormTypeOfOther.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormTypeOfEqualEqualHasNoEffect.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsWithInstanceOf.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsWithAny.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormTypeOfNotEqualHasNoEffect.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardFunctionErrors.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormThisMember.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardFunctionOfFormThisErrors.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsDefeat.ts", + "./testTs/test/testts/expressions/typeGuards/typePredicateOnVariableDeclaration01.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInIfStatement.ts", + "./testTs/test/testts/expressions/commaOperator/commaOperatorOtherInvalidOperation.ts", + "./testTs/test/testts/expressions/commaOperator/commaOperatorWithoutOperand.ts", + "./testTs/test/testts/expressions/commaOperator/commaOperatorInvalidAssignmentType.ts", + "./testTs/test/testts/expressions/valuesAndReferences/assignments.ts", + "./testTs/test/testts/expressions/valuesAndReferences/assignmentToParenthesizedIdentifiers.ts", + "./testTs/test/testts/expressions/thisKeyword/typeOfThisGeneral.ts", + "./testTs/test/testts/expressions/thisKeyword/thisInInvalidContexts.ts", + "./testTs/test/testts/expressions/thisKeyword/thisInInvalidContextsExternalModule.ts", + "./testTs/test/testts/expressions/thisKeyword/thisInObjectLiterals.ts", + "./testTs/test/testts/expressions/thisKeyword/typeOfThisInConstructorParamList.ts", + "./testTs/test/testts/expressions/asOperator/asOperatorAmbiguity.ts", + "./testTs/test/testts/expressions/asOperator/asOperator2.ts", + "./testTs/test/testts/expressions/asOperator/asOperatorContextualType.ts", + "./testTs/test/testts/expressions/asOperator/asOperatorNames.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator4.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator5.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator11.ts", + "./testTs/test/testts/expressions/binaryOperators/additionOperator/additionOperatorWithInvalidOperands.ts", + "./testTs/test/testts/expressions/binaryOperators/additionOperator/additionOperatorWithNullValueAndValidOperator.ts", + "./testTs/test/testts/expressions/binaryOperators/additionOperator/additionOperatorWithTypeParameter.ts", + "./testTs/test/testts/expressions/binaryOperators/additionOperator/additionOperatorWithNullValueAndInvalidOperator.ts", + "./testTs/test/testts/expressions/binaryOperators/additionOperator/additionOperatorWithOnlyNullValueOrUndefinedValue.ts", + "./testTs/test/testts/expressions/binaryOperators/additionOperator/additionOperatorWithUndefinedValueAndInvalidOperands.ts", + "./testTs/test/testts/expressions/binaryOperators/additionOperator/additionOperatorWithUndefinedValueAndValidOperator.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipPrimitiveType.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIdenticalPrimitiveType.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnProperty.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnCallSignature.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipTypeParameter.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithTypeParameter.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnOptionalProperty.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnIndexSignature.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIntersectionType.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnConstructorSignature.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithOneOperandIsNull.ts", + "./testTs/test/testts/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithInvalidOperands.ts", + "./testTs/test/testts/expressions/binaryOperators/logicalOrOperator/logicalOrOperatorWithEveryType.ts", + "./testTs/test/testts/expressions/binaryOperators/logicalOrOperator/logicalOrExpressionIsContextuallyTyped.ts", + "./testTs/test/testts/expressions/binaryOperators/logicalAndOperator/logicalAndOperatorWithEveryType.ts", + "./testTs/test/testts/expressions/binaryOperators/logicalAndOperator/logicalAndOperatorStrictMode.ts", + "./testTs/test/testts/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithUndefinedValueAndInvalidOperands.ts", + "./testTs/test/testts/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithOnlyNullValueOrUndefinedValue.ts", + "./testTs/test/testts/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithUndefinedValueAndValidOperands.ts", + "./testTs/test/testts/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithTypeParameter.ts", + "./testTs/test/testts/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithInvalidOperands.ts", + "./testTs/test/testts/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithNullValueAndInvalidOperands.ts", + "./testTs/test/testts/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithNullValueAndValidOperands.ts", + "./testTs/test/testts/expressions/binaryOperators/inOperator/inOperatorWithInvalidOperands.ts", + "./testTs/test/testts/expressions/arrayLiterals/arrayLiterals3.ts", + "./testTs/test/testts/expressions/arrayLiterals/arrayLiterals.ts", + "./testTs/test/testts/expressions/assignmentOperator/compoundAssignmentLHSIsValue.ts", + "./testTs/test/testts/expressions/assignmentOperator/compoundAdditionAssignmentLHSCannotBeAssigned.ts", + "./testTs/test/testts/expressions/assignmentOperator/assignmentLHSIsValue.ts", + "./testTs/test/testts/expressions/assignmentOperator/compoundAdditionAssignmentWithInvalidOperands.ts", + "./testTs/test/testts/expressions/assignmentOperator/compoundArithmeticAssignmentWithInvalidOperands.ts", + "./testTs/test/testts/expressions/assignmentOperator/compoundAdditionAssignmentLHSCanBeAssigned.ts", + "./testTs/test/testts/expressions/assignmentOperator/compoundArithmeticAssignmentLHSCanBeAssigned.ts", + "./testTs/test/testts/expressions/unaryOperators/decrementOperator/decrementOperatorWithUnsupportedBooleanType.ts", + "./testTs/test/testts/expressions/unaryOperators/decrementOperator/decrementOperatorWithAnyOtherTypeInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/decrementOperator/decrementOperatorWithEnumTypeInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/decrementOperator/decrementOperatorWithEnumType.ts", + "./testTs/test/testts/expressions/unaryOperators/decrementOperator/decrementOperatorWithUnsupportedStringType.ts", + "./testTs/test/testts/expressions/unaryOperators/decrementOperator/decrementOperatorWithNumberTypeInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/plusOperator/plusOperatorWithAnyOtherType.ts", + "./testTs/test/testts/expressions/unaryOperators/plusOperator/plusOperatorInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/plusOperator/plusOperatorWithEnumType.ts", + "./testTs/test/testts/expressions/unaryOperators/plusOperator/plusOperatorWithNumberType.ts", + "./testTs/test/testts/expressions/unaryOperators/plusOperator/plusOperatorWithStringType.ts", + "./testTs/test/testts/expressions/unaryOperators/plusOperator/plusOperatorWithBooleanType.ts", + "./testTs/test/testts/expressions/unaryOperators/deleteOperator/deleteOperatorWithNumberType.ts", + "./testTs/test/testts/expressions/unaryOperators/deleteOperator/deleteOperatorWithEnumType.ts", + "./testTs/test/testts/expressions/unaryOperators/deleteOperator/deleteOperatorWithBooleanType.ts", + "./testTs/test/testts/expressions/unaryOperators/deleteOperator/deleteOperatorWithAnyOtherType.ts", + "./testTs/test/testts/expressions/unaryOperators/deleteOperator/deleteOperatorInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/deleteOperator/deleteOperatorWithStringType.ts", + "./testTs/test/testts/expressions/unaryOperators/incrementOperator/incrementOperatorWithUnsupportedStringType.ts", + "./testTs/test/testts/expressions/unaryOperators/incrementOperator/incrementOperatorWithEnumType.ts", + "./testTs/test/testts/expressions/unaryOperators/incrementOperator/incrementOperatorWithEnumTypeInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/incrementOperator/incrementOperatorWithUnsupportedBooleanType.ts", + "./testTs/test/testts/expressions/unaryOperators/incrementOperator/incrementOperatorWithAnyOtherTypeInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/incrementOperator/incrementOperatorWithNumberTypeInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/typeofOperator/typeofOperatorWithBooleanType.ts", + "./testTs/test/testts/expressions/unaryOperators/typeofOperator/typeofOperatorWithStringType.ts", + "./testTs/test/testts/expressions/unaryOperators/typeofOperator/typeofOperatorWithEnumType.ts", + "./testTs/test/testts/expressions/unaryOperators/typeofOperator/typeofOperatorInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/typeofOperator/typeofOperatorWithAnyOtherType.ts", + "./testTs/test/testts/expressions/unaryOperators/typeofOperator/typeofOperatorWithNumberType.ts", + "./testTs/test/testts/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithAnyOtherType.ts", + "./testTs/test/testts/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithAnyOtherType.ts", + "./testTs/test/testts/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithStringType.ts", + "./testTs/test/testts/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithEnumType.ts", + "./testTs/test/testts/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithBooleanType.ts", + "./testTs/test/testts/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorWithNumberType.ts", + "./testTs/test/testts/expressions/unaryOperators/logicalNotOperator/logicalNotOperatorInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/voidOperator/voidOperatorInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/voidOperator/voidOperatorWithAnyOtherType.ts", + "./testTs/test/testts/expressions/unaryOperators/negateOperator/negateOperatorWithEnumType.ts", + "./testTs/test/testts/expressions/unaryOperators/negateOperator/negateOperatorWithStringType.ts", + "./testTs/test/testts/expressions/unaryOperators/negateOperator/negateOperatorWithBooleanType.ts", + "./testTs/test/testts/expressions/unaryOperators/negateOperator/negateOperatorWithNumberType.ts", + "./testTs/test/testts/expressions/unaryOperators/negateOperator/negateOperatorInvalidOperations.ts", + "./testTs/test/testts/expressions/unaryOperators/negateOperator/negateOperatorWithAnyOtherType.ts", + "./testTs/test/testts/expressions/identifiers/scopeResolutionIdentifiers.ts", + "./testTs/test/testts/expressions/optionalChaining/propertyAccessChain/propertyAccessChain.3.ts", + "./testTs/test/testts/expressions/optionalChaining/delete/deleteChain.ts", + "./testTs/test/testts/expressions/optionalChaining/privateIdentifierChain/privateIdentifierChain.1.ts", + "./testTs/test/testts/expressions/optionalChaining/callChain/callChain.3.ts", + "./testTs/test/testts/expressions/optionalChaining/elementAccessChain/elementAccessChain.3.ts", + "./testTs/test/testts/expressions/optionalChaining/taggedTemplateChain/taggedTemplateChain.ts", + "./testTs/test/testts/expressions/functionCalls/forgottenNew.ts", + "./testTs/test/testts/expressions/functionCalls/grammarAmbiguities.ts", + "./testTs/test/testts/expressions/functionCalls/callWithSpread2.ts", + "./testTs/test/testts/expressions/functionCalls/callOverload.ts", + "./testTs/test/testts/expressions/functionCalls/typeArgumentInference.ts", + "./testTs/test/testts/expressions/functionCalls/typeArgumentInferenceWithConstraints.ts", + "./testTs/test/testts/expressions/functionCalls/overloadResolutionConstructors.ts", + "./testTs/test/testts/expressions/functionCalls/typeArgumentInferenceConstructSignatures.ts", + "./testTs/test/testts/expressions/functionCalls/callWithSpread4.ts", + "./testTs/test/testts/expressions/functionCalls/functionCalls.ts", + "./testTs/test/testts/expressions/functionCalls/newWithSpread.ts", + "./testTs/test/testts/expressions/functionCalls/callWithSpread5.ts", + "./testTs/test/testts/expressions/functionCalls/typeArgumentInferenceWithObjectLiteral.ts", + "./testTs/test/testts/expressions/functionCalls/overloadResolution.ts", + "./testTs/test/testts/expressions/functionCalls/callWithSpread3.ts", + "./testTs/test/testts/expressions/functionCalls/callWithMissingVoid.ts", + "./testTs/test/testts/expressions/functionCalls/typeArgumentInferenceErrors.ts", + "./testTs/test/testts/expressions/functionCalls/overloadResolutionClassConstructors.ts", + "./testTs/test/testts/expressions/superPropertyAccess/errorSuperPropertyAccess.ts", + "./testTs/test/testts/expressions/superPropertyAccess/superSymbolIndexedAccess4.ts", + "./testTs/test/testts/expressions/superPropertyAccess/superSymbolIndexedAccess3.ts", + "./testTs/test/testts/expressions/propertyAccess/propertyAccessWidening.ts", + "./testTs/test/testts/expressions/propertyAccess/propertyAccess.ts", + "./testTs/test/testts/expressions/propertyAccess/propertyAccessStringIndexSignature.ts", + "./testTs/test/testts/expressions/propertyAccess/propertyAccessStringIndexSignatureNoImplicitAny.ts", + "./testTs/test/testts/expressions/functions/contextuallyTypedIifeStrict.ts", + "./testTs/test/testts/expressions/functions/arrowFunctionContexts.ts", + "./testTs/test/testts/expressions/typeAssertions/duplicatePropertiesInTypeAssertions02.ts", + "./testTs/test/testts/expressions/typeAssertions/duplicatePropertiesInTypeAssertions01.ts", + "./testTs/test/testts/expressions/typeAssertions/constAssertions.ts", + "./testTs/test/testts/expressions/typeAssertions/typeAssertions.ts", + "./testTs/test/testts/expressions/superCalls/errorSuperCalls.ts", + "./testTs/test/testts/expressions/literals/literals.ts", + "./testTs/test/testts/expressions/newOperator/newOperatorErrorCases_noImplicitAny.ts", + "./testTs/test/testts/expressions/newOperator/newOperatorErrorCases.ts", + "./testTs/test/testts/expressions/contextualTyping/arrayLiteralExpressionContextualTyping.ts", + "./testTs/test/testts/expressions/contextualTyping/functionExpressionContextualTyping2.ts", + "./testTs/test/testts/expressions/contextualTyping/superCallParameterContextualTyping2.ts", + "./testTs/test/testts/expressions/contextualTyping/getSetAccessorContextualTyping.ts", + "./testTs/test/testts/expressions/contextualTyping/objectLiteralContextualTyping.ts", + "./testTs/test/testts/expressions/contextualTyping/parenthesizedContexualTyping1.ts", + "./testTs/test/testts/expressions/contextualTyping/argumentExpressionContextualTyping.ts", + "./testTs/test/testts/expressions/contextualTyping/parenthesizedContexualTyping2.ts", + "./testTs/test/testts/expressions/operators/incrementAndDecrement.ts", + "./testTs/test/testts/declarationEmit/typesVersionsDeclarationEmit.multiFileBackReferenceToSelf.ts", + "./testTs/test/testts/declarationEmit/typePredicates/declarationEmitThisPredicatesWithPrivateName02.ts", + "./testTs/test/testts/declarationEmit/typePredicates/declarationEmitThisPredicates02.ts", + "./testTs/test/testts/decorators/decoratorCallGeneric.ts", + "./testTs/test/testts/decorators/decoratorMetadata-jsdoc.ts", + "./testTs/test/testts/decorators/missingDecoratorType.ts", + "./testTs/test/testts/decorators/class/decoratorChecksFunctionBodies.ts", + "./testTs/test/testts/decorators/class/decoratorOnClass3.ts", + "./testTs/test/testts/decorators/class/decoratorOnClass8.ts", + "./testTs/test/testts/decorators/class/constructableDecoratorOnClass01.ts", + "./testTs/test/testts/decorators/class/constructor/decoratorOnClassConstructor1.ts", + "./testTs/test/testts/decorators/class/constructor/decoratorOnClassConstructor2.ts", + "./testTs/test/testts/decorators/class/constructor/parameter/decoratorOnClassConstructorParameter4.ts", + "./testTs/test/testts/decorators/class/accessor/decoratorOnClassAccessor3.ts", + "./testTs/test/testts/decorators/class/accessor/decoratorOnClassAccessor6.ts", + "./testTs/test/testts/decorators/class/accessor/decoratorOnClassAccessor7.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethodOverload1.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod8.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod12.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod10.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod11.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod6.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod17.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod3.ts", + "./testTs/test/testts/decorators/class/method/parameter/decoratorOnClassMethodThisParameter.ts", + "./testTs/test/testts/decorators/class/property/decoratorOnClassProperty11.ts", + "./testTs/test/testts/decorators/class/property/decoratorOnClassProperty6.ts", + "./testTs/test/testts/decorators/class/property/decoratorOnClassProperty7.ts", + "./testTs/test/testts/decorators/class/property/decoratorOnClassProperty3.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnImportEquals1.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnFunctionParameter.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnImportEquals2.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnFunctionExpression.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnVar.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnEnum2.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnArrowFunction.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnFunctionDeclaration.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnEnum.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnInterface.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnTypeAlias.ts", + "./testTs/test/testts/decorators/invalid/decoratorOnInternalModule.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInterfacesWithIndexers2.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates3.ts", + "./testTs/test/testts/interfaces/declarationMerging/twoGenericInterfacesDifferingByTypeParameterName.ts", + "./testTs/test/testts/interfaces/declarationMerging/twoGenericInterfacesWithTheSameNameButDifferentArity.ts", + "./testTs/test/testts/interfaces/declarationMerging/genericAndNonGenericInterfaceWithTheSameName.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInheritedMembersSatisfyAbstractBase.ts", + "./testTs/test/testts/interfaces/declarationMerging/twoGenericInterfacesDifferingByTypeParameterName2.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInterfacesWithConflictingPropertyNames.ts", + "./testTs/test/testts/interfaces/declarationMerging/twoInterfacesDifferentRootModule.ts", + "./testTs/test/testts/interfaces/declarationMerging/twoInterfacesDifferentRootModule2.ts", + "./testTs/test/testts/interfaces/declarationMerging/twoGenericInterfacesWithDifferentConstraints.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInterfacesWithInheritedPrivates2.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInterfacesWithMultipleBases4.ts", + "./testTs/test/testts/interfaces/interfacesExtendingClasses/implementingAnInterfaceExtendingClassWithPrivates.ts", + "./testTs/test/testts/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithPrivates2.ts", + "./testTs/test/testts/interfaces/interfacesExtendingClasses/implementingAnInterfaceExtendingClassWithPrivates2.ts", + "./testTs/test/testts/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithPrivates.ts", + "./testTs/test/testts/interfaces/interfacesExtendingClasses/interfaceExtendingClass2.ts", + "./testTs/test/testts/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithProtecteds2.ts", + "./testTs/test/testts/interfaces/interfacesExtendingClasses/interfaceExtendingClassWithProtecteds.ts", + "./testTs/test/testts/interfaces/interfacesExtendingClasses/implementingAnInterfaceExtendingClassWithProtecteds.ts", + "./testTs/test/testts/interfaces/interfacesExtendingClasses/interfaceExtendingClass.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceThatIndirectlyInheritsFromItself.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithPropertyThatIsPrivateInBaseType.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceExtendingOptionalChain.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/derivedInterfaceIncompatibleWithBaseIndexer.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithStringIndexerHidingBaseTypeIndexer.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithAccessibilityModifiers.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceThatHidesBaseProperty2.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceExtendsObjectIntersectionErrors.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface05.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithPropertyThatIsPrivateInBaseType2.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithMultipleBaseTypes.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithStringIndexerHidingBaseTypeIndexer3.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithStringIndexerHidingBaseTypeIndexer2.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfacesWithPredefinedTypesAsNames.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithMultipleBaseTypes2.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceThatInheritsFromItself.ts", + "./testTs/test/testts/moduleResolution/declarationNotFoundPackageBundlesTypes.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport_noImplicitAny.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport_noImplicitAny_relativePath.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport_withAugmentation.ts", + "./testTs/test/testts/moduleResolution/packageJsonMain_isNonRecursive.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport_noImplicitAny_scoped.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport_noImplicitAny_typesForPackageExist.ts", + "./testTs/test/testts/parser/ecmascript2018/forAwait/parser.forAwait.es2018.ts", + "./testTs/test/testts/parser/ecmascript2018/asyncGenerators/parser.asyncGenerators.functionExpressions.es2018.ts", + "./testTs/test/testts/parser/ecmascript2018/asyncGenerators/parser.asyncGenerators.classMethods.es2018.ts", + "./testTs/test/testts/parser/ecmascript2018/asyncGenerators/parser.asyncGenerators.functionDeclarations.es2018.ts", + "./testTs/test/testts/parser/ecmascript2018/asyncGenerators/parser.asyncGenerators.objectLiteralMethods.es2018.ts", + "./testTs/test/testts/parser/ecmascript2021/numericSeparators/parser.numericSeparators.decmialNegative.ts", + "./testTs/test/testts/parser/ecmascript2021/numericSeparators/parser.numericSeparators.unicodeEscape.ts", + "./testTs/test/testts/parser/ecmascript2021/numericSeparators/parser.numericSeparators.octalNegative.ts", + "./testTs/test/testts/parser/ecmascript2021/numericSeparators/parser.numericSeparators.binaryNegative.ts", + "./testTs/test/testts/parser/ecmascript2021/numericSeparators/parser.numericSeparators.hexNegative.ts", + "./testTs/test/testts/parser/ecmascript3/Accessors/parserES3Accessors2.ts", + "./testTs/test/testts/parser/ecmascript3/Accessors/parserES3Accessors4.ts", + "./testTs/test/testts/parser/ecmascript3/Accessors/parserES3Accessors1.ts", + "./testTs/test/testts/parser/ecmascript3/Accessors/parserES3Accessors3.ts", + "./testTs/test/testts/parser/ecmascript5/parserUnicode1.ts", + "./testTs/test/testts/parser/ecmascript5/parserS7.2_A1.5_T2.ts", + "./testTs/test/testts/parser/ecmascript5/parser10.1.1-8gs.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource13.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource10.ts", + "./testTs/test/testts/parser/ecmascript5/parserS12.11_A3_T4.ts", + "./testTs/test/testts/parser/ecmascript5/parserUsingConstructorAsIdentifier.ts", + "./testTs/test/testts/parser/ecmascript5/parserObjectCreationArrayLiteral1.ts", + "./testTs/test/testts/parser/ecmascript5/parserS7.9_A5.7_T1.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource7.ts", + "./testTs/test/testts/parser/ecmascript5/parserNotRegex1.ts", + "./testTs/test/testts/parser/ecmascript5/parserObjectCreationArrayLiteral2.ts", + "./testTs/test/testts/parser/ecmascript5/parservoidInQualifiedName1.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource4.ts", + "./testTs/test/testts/parser/ecmascript5/parservoidInQualifiedName2.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource2.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource8.ts", + "./testTs/test/testts/parser/ecmascript5/parserImportDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource12.ts", + "./testTs/test/testts/parser/ecmascript5/parserArgumentList1.ts", + "./testTs/test/testts/parser/ecmascript5/parserObjectCreationArrayLiteral3.ts", + "./testTs/test/testts/parser/ecmascript5/parserKeywordsAsIdentifierName2.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource6.ts", + "./testTs/test/testts/parser/ecmascript5/parserNoASIOnCallAfterFunctionExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource5.ts", + "./testTs/test/testts/parser/ecmascript5/parser15.4.4.14-9-2.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource9.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource1.ts", + "./testTs/test/testts/parser/ecmascript5/parserAdditiveExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/parserObjectCreationArrayLiteral4.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource11.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource3.ts", + "./testTs/test/testts/parser/ecmascript5/parserRealSource14.ts", + "./testTs/test/testts/parser/ecmascript5/parserAstSpans1.ts", + "./testTs/test/testts/parser/ecmascript5/parserS7.6_A4.2_T1.ts", + "./testTs/test/testts/parser/ecmascript5/parserS7.3_A1.1_T2.ts", + "./testTs/test/testts/parser/ecmascript5/TupleTypes/TupleType6.ts", + "./testTs/test/testts/parser/ecmascript5/TupleTypes/TupleType4.ts", + "./testTs/test/testts/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration3.ts", + "./testTs/test/testts/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration4.ts", + "./testTs/test/testts/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration2.ts", + "./testTs/test/testts/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/ObjectTypes/parserObjectType5.ts", + "./testTs/test/testts/parser/ecmascript5/ObjectTypes/parserObjectType6.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserErrantAccessibilityModifierInModule1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserErrantEqualsGreaterThanAfterFunction2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserPublicBreak1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserUnfinishedTypeNameBeforeKeyword1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserModifierOnPropertySignature1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserMissingLambdaOpenBrace1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserUnterminatedGeneric1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserCommaInTypeMemberList2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserStatementIsNotAMemberVariableDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserModifierOnStatementInBlock4.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserErrantEqualsGreaterThanAfterFunction1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserEqualsGreaterThanAfterFunction2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserEmptyParenthesizedExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserEqualsGreaterThanAfterFunction1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserErrantSemicolonInClass1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserFuzz1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause4.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause5.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ExtendsOrImplementsClauses/parserErrorRecovery_ExtendsOrImplementsClause6.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/SourceUnits/parserErrorRecovery_SourceUnit1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/SwitchStatements/parserErrorRecovery_SwitchStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/SwitchStatements/parserErrorRecovery_SwitchStatement1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArrayLiteralExpressions/parserErrorRecoveryArrayLiteralExpression2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArrayLiteralExpressions/parserErrorRecoveryArrayLiteralExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArrayLiteralExpressions/parserErrorRecoveryArrayLiteralExpression3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic10.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic7.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic6.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList4.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList7.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArgumentLists/parserErrorRecovery_ArgumentList6.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ClassElements/parserErrorRecovery_ClassElement3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ClassElements/parserErrorRecovery_ClassElement1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ClassElements/parserErrorRecovery_ClassElement2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement6.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement4.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement5.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/IfStatements/parserErrorRecoveryIfStatement3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/Blocks/parserErrorRecovery_Block1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/Blocks/parserErrorRecovery_Block3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/Blocks/parserErrorRecovery_Block2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/IncompleteMemberVariables/parserErrorRecovery_IncompleteMemberVariable2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ParameterLists/parserErrorRecovery_ParameterList5.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ParameterLists/parserErrorRecovery_ParameterList2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ParameterLists/parserErrorRecovery_ParameterList4.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ParameterLists/parserErrorRecovery_ParameterList1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ParameterLists/parserErrorRecovery_ParameterList6.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/VariableLists/parserInvalidIdentifiersInVariableStatements1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/VariableLists/parserErrorRecovery_VariableList1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ObjectLiterals/parserErrorRecovery_ObjectLiteral2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ObjectLiterals/parserErrorRecovery_ObjectLiteral3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ObjectLiterals/parserErrorRecovery_ObjectLiteral4.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ObjectLiterals/parserErrorRecovery_ObjectLiteral1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ObjectLiterals/parserErrorRecovery_ObjectLiteral5.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArrowFunctions/ArrowFunction1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArrowFunctions/parserX_ArrowFunction1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArrowFunctions/ArrowFunction3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArrowFunctions/parserX_ArrowFunction3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/LeftShifts/parserErrorRecovery_LeftShift1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ModuleElements/parserErrorRecovery_ModuleElement2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ModuleElements/parserErrorRecovery_ModuleElement1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/Expressions/parserErrorRecovery_Expression1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/TypeArgumentLists/parserX_TypeArgumentList1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/TypeArgumentLists/TypeArgumentList1.ts", + "./testTs/test/testts/parser/ecmascript5/MissingTokens/parserMissingToken1.ts", + "./testTs/test/testts/parser/ecmascript5/MissingTokens/parserMissingToken2.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration4.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration6.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClass2.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration2.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration10.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration18.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration7.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration13.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration25.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration15.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration24.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration14.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration21.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration11.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClass1.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration12.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration8.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration3.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration22.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration9.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration5.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode9.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode13.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode15.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/octalLiteralInStrictModeES3.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode4.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode16.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode10.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode6-negative.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode14.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode12.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode2.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode15-negative.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode7.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode3-negative.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode11.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode8.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode5.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode3.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode1.ts", + "./testTs/test/testts/parser/ecmascript5/StrictMode/parserStrictMode6.ts", + "./testTs/test/testts/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration3.ts", + "./testTs/test/testts/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration4.ts", + "./testTs/test/testts/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration8.ts", + "./testTs/test/testts/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration6.ts", + "./testTs/test/testts/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration7.ts", + "./testTs/test/testts/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration11.ts", + "./testTs/test/testts/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration9.ts", + "./testTs/test/testts/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration10.ts", + "./testTs/test/testts/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration2.ts", + "./testTs/test/testts/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration9.ts", + "./testTs/test/testts/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration7.ts", + "./testTs/test/testts/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration5.ts", + "./testTs/test/testts/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration8.ts", + "./testTs/test/testts/parser/ecmascript5/IndexMemberDeclarations/parserIndexMemberDeclaration10.ts", + "./testTs/test/testts/parser/ecmascript5/IndexSignatures/parserIndexSignature8.ts", + "./testTs/test/testts/parser/ecmascript5/IndexSignatures/parserIndexSignature7.ts", + "./testTs/test/testts/parser/ecmascript5/IndexSignatures/parserIndexSignature1.ts", + "./testTs/test/testts/parser/ecmascript5/IndexSignatures/parserIndexSignature10.ts", + "./testTs/test/testts/parser/ecmascript5/IndexSignatures/parserIndexSignature4.ts", + "./testTs/test/testts/parser/ecmascript5/IndexSignatures/parserIndexSignature3.ts", + "./testTs/test/testts/parser/ecmascript5/IndexSignatures/parserIndexSignature11.ts", + "./testTs/test/testts/parser/ecmascript5/IndexSignatures/parserIndexSignature2.ts", + "./testTs/test/testts/parser/ecmascript5/IndexSignatures/parserIndexSignature9.ts", + "./testTs/test/testts/parser/ecmascript5/IndexSignatures/parserIndexSignature6.ts", + "./testTs/test/testts/parser/ecmascript5/IndexSignatures/parserIndexSignature5.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration3.d.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnum7.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnum4.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnum5.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration2.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration4.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity2.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity3.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity5.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpression5.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity1.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpression3.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpression2.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity4.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpression4.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity7.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parseRegularExpressionMixedWithComments.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens2.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens14.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens10.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens16.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens9.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens1.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens17.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens12.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens19.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens18.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens6.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens11.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens5.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens20.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens13.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens7.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens8.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens3.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens4.ts", + "./testTs/test/testts/parser/ecmascript5/SkippedTokens/parserSkippedTokens15.ts", + "./testTs/test/testts/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName8.ts", + "./testTs/test/testts/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName1.ts", + "./testTs/test/testts/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName2.ts", + "./testTs/test/testts/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName5.ts", + "./testTs/test/testts/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName7.ts", + "./testTs/test/testts/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName9.ts", + "./testTs/test/testts/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName6.ts", + "./testTs/test/testts/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName3.ts", + "./testTs/test/testts/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName4.ts", + "./testTs/test/testts/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName10.ts", + "./testTs/test/testts/parser/ecmascript5/ComputedPropertyNames/parserES5ComputedPropertyName11.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser509669.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser509630.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser566700.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser512325.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser509693.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser509667.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser642331_1.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser645086_1.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser618973.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser509618.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser553699.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser521128.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser512097.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser509668.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser536727.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser642331.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser509534.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser645086_2.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser519458.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser509698.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser512084.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser585151.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parserTernaryAndCommaOperators1.ts", + "./testTs/test/testts/parser/ecmascript5/Protected/Protected1.ts", + "./testTs/test/testts/parser/ecmascript5/Protected/Protected7.ts", + "./testTs/test/testts/parser/ecmascript5/Protected/Protected4.ts", + "./testTs/test/testts/parser/ecmascript5/Protected/Protected2.ts", + "./testTs/test/testts/parser/ecmascript5/Protected/Protected6.ts", + "./testTs/test/testts/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration2.ts", + "./testTs/test/testts/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration3.ts", + "./testTs/test/testts/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclarationAmbiguities1.ts", + "./testTs/test/testts/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration5.ts", + "./testTs/test/testts/parser/ecmascript5/MemberFunctionDeclarations/parserMemberFunctionDeclaration4.ts", + "./testTs/test/testts/parser/ecmascript5/Fuzz/parser0_004152.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration6.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration8.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration5.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration3.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration2.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration10.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration4.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserAccessors9.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserSetAccessorWithTypeParameters1.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserAccessors5.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserAccessors1.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserAccessors6.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserAccessors7.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserGetAccessorWithTypeParameters1.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserAccessors10.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserSetAccessorWithTypeAnnotation1.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserAccessors8.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserAccessors3.ts", + "./testTs/test/testts/parser/ecmascript5/RealWorld/parserharness.ts", + "./testTs/test/testts/parser/ecmascript5/RealWorld/parserindenter.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration15.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration14.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration9.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration16.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration13.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration3.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration10.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration12.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration7.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration18.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration2.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration17.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration8.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessor1.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration11.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration4.d.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration2.d.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration5.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration3.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration10.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration1.d.ts", + "./testTs/test/testts/parser/ecmascript5/SuperExpressions/parserSuperExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/SuperExpressions/parserSuperExpression2.ts", + "./testTs/test/testts/parser/ecmascript5/SuperExpressions/parserSuperExpression3.ts", + "./testTs/test/testts/parser/ecmascript5/SuperExpressions/parserSuperExpression4.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList1.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList5.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList2.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList7.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList8.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList17.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList13.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList10.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList9.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList11.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList16.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList14.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList3.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList4.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList15.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList6.ts", + "./testTs/test/testts/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration7.ts", + "./testTs/test/testts/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration2.d.ts", + "./testTs/test/testts/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration6.ts", + "./testTs/test/testts/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration3.ts", + "./testTs/test/testts/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration4.ts", + "./testTs/test/testts/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration2.ts", + "./testTs/test/testts/parser/ecmascript5/Types/parserTypeQuery3.ts", + "./testTs/test/testts/parser/ecmascript5/Types/parserTypeQuery2.ts", + "./testTs/test/testts/parser/ecmascript5/Types/parserTypeQuery7.ts", + "./testTs/test/testts/parser/ecmascript5/Types/parserTypeQuery1.ts", + "./testTs/test/testts/parser/ecmascript5/Types/parserTypeQuery6.ts", + "./testTs/test/testts/parser/ecmascript5/Types/parserTypeQuery8.ts", + "./testTs/test/testts/parser/ecmascript5/Types/parserTypeQuery5.ts", + "./testTs/test/testts/parser/ecmascript5/Types/parserTypeQuery9.ts", + "./testTs/test/testts/parser/ecmascript5/Types/parserTypeQuery4.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolProperty2.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolProperty6.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolProperty3.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolProperty8.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolProperty5.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolProperty7.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolProperty1.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolProperty9.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolProperty4.ts", + "./testTs/test/testts/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression5.ts", + "./testTs/test/testts/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression4.ts", + "./testTs/test/testts/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression2.ts", + "./testTs/test/testts/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression3.ts", + "./testTs/test/testts/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration8.ts", + "./testTs/test/testts/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration3.ts", + "./testTs/test/testts/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration2.ts", + "./testTs/test/testts/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration6.ts", + "./testTs/test/testts/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration4.ts", + "./testTs/test/testts/parser/ecmascript5/CatchClauses/parserCatchClauseWithTypeAnnotation1.ts", + "./testTs/test/testts/parser/ecmascript5/ExportAssignments/parserExportAssignment7.ts", + "./testTs/test/testts/parser/ecmascript5/ExportAssignments/parserExportAssignment5.ts", + "./testTs/test/testts/parser/ecmascript5/ExportAssignments/parserExportAssignment8.ts", + "./testTs/test/testts/parser/ecmascript5/ExportAssignments/parserExportAssignment3.ts", + "./testTs/test/testts/parser/ecmascript5/ExportAssignments/parserExportAssignment6.ts", + "./testTs/test/testts/parser/ecmascript5/ExportAssignments/parserExportAssignment9.ts", + "./testTs/test/testts/parser/ecmascript5/ExportAssignments/parserExportAssignment1.ts", + "./testTs/test/testts/parser/ecmascript5/ExportAssignments/parserExportAssignment2.ts", + "./testTs/test/testts/parser/ecmascript5/ExportAssignments/parserExportAssignment4.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGenericsInTypeContexts2.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGenericConstraint4.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity7.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGenericConstraint5.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGenericConstraint6.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity8.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity14.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGenericsInTypeContexts1.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserConstructorAmbiguity1.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGenericConstraint2.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity4.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity16.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity20.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserConstructorAmbiguity2.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserCastVersusArrowFunction1.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserMemberAccessExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity11.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserAmbiguity1.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity3.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGenericConstraint3.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity15.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity19.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserConstructorAmbiguity3.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserMemberAccessOffOfGenericType1.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity2.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserConstructorAmbiguity4.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGenericConstraint7.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity9.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGenericsInInterfaceDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity12.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserAmbiguity2.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity17.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserAmbiguity3.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator4.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity18.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGenericsInVariableDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity13.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserObjectCreation1.ts", + "./testTs/test/testts/parser/ecmascript5/AutomaticSemicolonInsertion/parserAutomaticSemicolonInsertion1.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserPostfixUnaryExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserObjectCreation2.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserUnaryExpression2.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserUnaryExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserAssignmentExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserMemberAccessAfterPostfixExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parseIncompleteBinaryExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserTypeAssertionInObjectCreationExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserUnaryExpression4.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserUnaryExpression3.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserUnaryExpression5.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserUnaryExpression7.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserPostfixPostfixExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserConditionalExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserInvocationOfMemberAccessOffOfObjectCreationExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForInStatement6.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForInStatement7.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement21.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserDoStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForInStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement10.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserIfStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement5.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserBreakStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForInStatement4.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement20.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForInStatement3.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement9.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement4.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement7.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement15.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForInStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserVariableStatement2.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement11.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForStatement7.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserWithStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement13.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserIfStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForStatement4.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserWithStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement3.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement6.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserTryStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement12.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForStatement8.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserReturnStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserWhileStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForInStatement5.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserSwitchStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserEmptyStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForStatement5.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForStatement3.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserBlockStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserDebuggerStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserForStatement6.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement14.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserThrowStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserExpressionStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement8.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement16.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserContinueStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserLabeledStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserVariableStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/LabeledStatements/parser_duplicateLabel1.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/LabeledStatements/parser_duplicateLabel2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget1.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement4.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget5.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement1.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement3.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueNotInIterationStatement4.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget6.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ReturnStatements/parserReturnStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ReturnStatements/parserReturnStatement4.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ReturnStatements/parserReturnStatement4.js", + "./testTs/test/testts/parser/ecmascript5/Statements/ReturnStatements/parserReturnStatement1.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakNotInIterationOrSwitchStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget5.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement4.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget6.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakNotInIterationOrSwitchStatement1.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName38.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName1.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName11.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName12.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName25.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName28.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName7.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName21.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName3.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName15.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName41.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName10.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName4.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName36.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName20.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName14.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName22.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName16.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName8.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName37.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName5.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName13.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName30.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName19.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName18.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName24.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName2.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName35.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName9.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName29.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName26.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName40.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName27.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName31.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName23.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName6.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName34.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName17.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName39.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName32.ts", + "./testTs/test/testts/parser/ecmascript6/ComputedPropertyNames/parserComputedPropertyName33.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement12.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement16.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement20.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement2.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement7.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement5.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement13.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement4.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement6.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement21.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement22.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement1.d.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement15.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement11.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement8.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement14.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement9.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement3.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement10.ts", + "./testTs/test/testts/parser/ecmascript6/ShorthandPropertyAssignment/parserShorthandPropertyAssignment4.ts", + "./testTs/test/testts/parser/ecmascript6/ShorthandPropertyAssignment/parserShorthandPropertyAssignment1.ts", + "./testTs/test/testts/parser/ecmascript6/ShorthandPropertyAssignment/parserShorthandPropertyAssignment5.ts", + "./testTs/test/testts/parser/ecmascript6/ShorthandPropertyAssignment/parserShorthandPropertyAssignment3.ts", + "./testTs/test/testts/parser/ecmascript6/ShorthandPropertyAssignment/parserShorthandPropertyAssignment2.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolIndexer5.ts", + "./testTs/test/testts/salsa/plainJSRedeclare2.ts", + "./testTs/test/testts/salsa/checkSpecialPropertyAssignments.ts", + "./testTs/test/testts/salsa/inferringClassMembersFromAssignments.ts", + "./testTs/test/testts/salsa/lateBoundAssignmentDeclarationSupport5.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment36.ts", + "./testTs/test/testts/salsa/typeFromPrototypeAssignment3.ts", + "./testTs/test/testts/salsa/conflictingCommonJSES2015Exports.ts", + "./testTs/test/testts/salsa/moduleExportWithExportPropertyAssignment4.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment22.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment33.ts", + "./testTs/test/testts/salsa/moduleExportsAliasLoop1.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment26.ts", + "./testTs/test/testts/salsa/typeFromPrototypeAssignment2.ts", + "./testTs/test/testts/salsa/plainJSBinderErrors.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment28.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment31.ts", + "./testTs/test/testts/salsa/nestedDestructuringOfRequire.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment32.ts", + "./testTs/test/testts/salsa/enumMergeWithExpando.ts", + "./testTs/test/testts/salsa/jsContainerMergeTsDeclaration2.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment29.ts", + "./testTs/test/testts/salsa/typeLookupInIIFE.ts", + "./testTs/test/testts/salsa/requireOfESWithPropertyAccess.ts", + "./testTs/test/testts/salsa/lateBoundAssignmentDeclarationSupport3.ts", + "./testTs/test/testts/salsa/plainJSRedeclare.ts", + "./testTs/test/testts/salsa/prototypePropertyAssignmentMergeWithInterfaceMethod.ts", + "./testTs/test/testts/salsa/jsContainerMergeTsDeclaration3.ts", + "./testTs/test/testts/salsa/plainJSReservedStrict.ts", + "./testTs/test/testts/salsa/thisPropertyAssignmentComputed.ts", + "./testTs/test/testts/salsa/typeFromJSInitializer4.ts", + "./testTs/test/testts/salsa/moduleExportWithExportPropertyAssignment3.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment21.ts", + "./testTs/test/testts/salsa/moduleExportsAliasLoop2.ts", + "./testTs/test/testts/salsa/chainedPrototypeAssignment.ts", + "./testTs/test/testts/salsa/typeFromJSConstructor.ts", + "./testTs/test/testts/salsa/typeFromJSInitializer.ts", + "./testTs/test/testts/salsa/typeFromPrototypeAssignment.ts", + "./testTs/test/testts/salsa/exportDefaultInJsFile02.ts", + "./testTs/test/testts/salsa/moduleExportDuplicateAlias.ts", + "./testTs/test/testts/salsa/assignmentToVoidZero2.ts", + "./testTs/test/testts/salsa/thisPropertyAssignment.ts", + "./testTs/test/testts/salsa/propertyAssignmentUseParentType2.ts", + "./testTs/test/testts/salsa/lateBoundAssignmentDeclarationSupport2.ts", + "./testTs/test/testts/salsa/constructorFunctions.ts", + "./testTs/test/testts/salsa/exportPropertyAssignmentNameResolution.ts", + "./testTs/test/testts/salsa/exportDefaultInJsFile01.ts", + "./testTs/test/testts/salsa/propertyAssignmentOnUnresolvedImportedSymbol.ts", + "./testTs/test/testts/salsa/expandoOnAlias.ts", + "./testTs/test/testts/salsa/importAliasModuleExports.ts", + "./testTs/test/testts/salsa/constructorFunctionsStrict.ts", + "./testTs/test/testts/salsa/lateBoundAssignmentDeclarationSupport4.ts", + "./testTs/test/testts/salsa/lateBoundAssignmentDeclarationSupport1.ts", + "./testTs/test/testts/salsa/namespaceAssignmentToRequireAlias.ts", + "./testTs/test/testts/salsa/moduleExportWithExportPropertyAssignment.ts", + "./testTs/test/testts/salsa/globalMergeWithCommonJSAssignmentDeclaration.ts", + "./testTs/test/testts/salsa/exportNestedNamespaces2.ts", + "./testTs/test/testts/salsa/prototypePropertyAssignmentMergeAcrossFiles2.ts", + "./testTs/test/testts/salsa/moduleExportWithExportPropertyAssignment2.ts", + "./testTs/test/testts/salsa/moduleExportAliasUnknown.ts", + "./testTs/test/testts/salsa/classCanExtendConstructorFunction.ts", + "./testTs/test/testts/salsa/lateBoundAssignmentDeclarationSupport6.ts", + "./testTs/test/testts/functions/parameterInitializersForwardReferencing.ts", + "./testTs/test/testts/functions/functionOverloadCompatibilityWithVoid01.ts", + "./testTs/test/testts/functions/functionOverloadErrorsSyntax.ts", + "./testTs/test/testts/functions/parameterInitializersForwardReferencing1_es6.ts", + "./testTs/test/testts/functions/functionImplementationErrors.ts", + "./testTs/test/testts/functions/strictBindCallApply1.ts", + "./testTs/test/testts/functions/parameterInitializersForwardReferencing1.ts", + "./testTs/test/testts/functions/functionNameConflicts.ts", + "./testTs/test/testts/functions/functionOverloadErrors.ts", + "./testTs/test/testts/functions/functionWithUseStrictAndSimpleParameterList_es2016.ts", + "./testTs/test/testts/importAssertion/importAssertion4.ts", + "./testTs/test/testts/importAssertion/importAssertion5.ts", + "./testTs/test/testts/Symbols/ES5SymbolProperty2.ts", + "./testTs/test/testts/Symbols/ES5SymbolProperty6.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesErrorFromNotUsingIdentifier.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesFunctionArgument2.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignmentErrorFromMissingIdentifier.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignmentError.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesErrorWithModule.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesErrorFromNoneExistingIdentifier.ts", + "./testTs/test/testts/es6/newTarget/invalidNewTarget.es6.ts", + "./testTs/test/testts/es6/newTarget/invalidNewTarget.es5.ts", + "./testTs/test/testts/es6/memberFunctionDeclarations/MemberFunctionDeclaration4_es6.ts", + "./testTs/test/testts/es6/memberFunctionDeclarations/MemberFunctionDeclaration8_es6.ts", + "./testTs/test/testts/es6/memberFunctionDeclarations/MemberFunctionDeclaration5_es6.ts", + "./testTs/test/testts/es6/memberFunctionDeclarations/MemberFunctionDeclaration3_es6.ts", + "./testTs/test/testts/es6/memberFunctionDeclarations/MemberFunctionDeclaration6_es6.ts", + "./testTs/test/testts/es6/functionPropertyAssignments/FunctionPropertyAssignments5_es6.ts", + "./testTs/test/testts/es6/functionPropertyAssignments/FunctionPropertyAssignments6_es6.ts", + "./testTs/test/testts/es6/functionPropertyAssignments/FunctionPropertyAssignments4_es6.ts", + "./testTs/test/testts/es6/functionPropertyAssignments/FunctionPropertyAssignments3_es6.ts", + "./testTs/test/testts/es6/functionPropertyAssignments/FunctionPropertyAssignments2_es6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionThisCapturing.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments14.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments19.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments12.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments09.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments04.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments10.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments01_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments03.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments17.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments02_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments06.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments05.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments11.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments16.ts", + "./testTs/test/testts/es6/arrowFunction/disallowLineTerminatorBeforeArrow.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments18.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments07.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionThisCapturingES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments12_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments01.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments15.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments02.ts", + "./testTs/test/testts/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteralError.ts", + "./testTs/test/testts/es6/binaryAndOctalIntegerLiteral/binaryIntegerLiteralError.ts", + "./testTs/test/testts/es6/binaryAndOctalIntegerLiteral/invalidBinaryIntegerLiteralAndOctalIntegerLiteral.ts", + "./testTs/test/testts/es6/classExpressions/typeArgumentInferenceWithClassExpression2.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit4_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames26_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames3_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames43_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames40_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames34_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames49_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames45_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit4_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames30_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames21_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames51_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames32_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames17_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames36_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames44_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames49_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames35_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames9_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames34_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames40_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames39_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames32_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesOnOverloads_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames39_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames19_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames19_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesWithStaticProperty.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames12_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames12_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames43_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames38_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames15_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames50_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames8_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames30_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames9_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames15_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames5_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit3_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType8_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames2_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType10_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesOnOverloads_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames6_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames26_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames50_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames3_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames35_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames27_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames8_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType9_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType9_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames23_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames14_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames24_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames5_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames2_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames24_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames27_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit6_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames14_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType8_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames36_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType10_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames42_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit3_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames45_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames42_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames51_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames6_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames17_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames44_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames21_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames38_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit6_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames23_ES6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration2_es6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration1_es6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration6_es6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration4_es6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration13_es6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration11_es6.ts", + "./testTs/test/testts/es6/templates/templateStringInModulo.ts", + "./testTs/test/testts/es6/templates/templateStringUnterminated2_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringUnterminated4.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithIncompatibleTypedTags.ts", + "./testTs/test/testts/es6/templates/templateStringUnterminated1_ES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithOverloadResolution1_ES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithIncompatibleTypedTagsES6.ts", + "./testTs/test/testts/es6/templates/templateStringInModuleNameES6.ts", + "./testTs/test/testts/es6/templates/templateStringBinaryOperationsInvalid.ts", + "./testTs/test/testts/es6/templates/templateStringInNewExpression.ts", + "./testTs/test/testts/es6/templates/templateStringBinaryOperationsES6Invalid.ts", + "./testTs/test/testts/es6/templates/templateStringInModuleName.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsTypeArgumentInferenceES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedInstanceOf.ts", + "./testTs/test/testts/es6/templates/templateStringInFunctionParameterTypeES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithOverloadResolution1.ts", + "./testTs/test/testts/es6/templates/templateStringInDeleteExpressionES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateWithConstructableTag02.ts", + "./testTs/test/testts/es6/templates/TemplateExpression1.ts", + "./testTs/test/testts/es6/templates/templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.ts", + "./testTs/test/testts/es6/templates/templateStringInInstanceOfES6.ts", + "./testTs/test/testts/es6/templates/templateStringInMultiplicationES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpression.ts", + "./testTs/test/testts/es6/templates/templateStringUnterminated1.ts", + "./testTs/test/testts/es6/templates/templateStringInInstanceOf.ts", + "./testTs/test/testts/es6/templates/templateStringInCallExpression.ts", + "./testTs/test/testts/es6/templates/templateStringInNewOperatorES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateWithConstructableTag01.ts", + "./testTs/test/testts/es6/templates/templateStringInPropertyNameES6_1.ts", + "./testTs/test/testts/es6/templates/templateStringInNewExpressionES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedYieldKeyword.ts", + "./testTs/test/testts/es6/templates/templateStringUnterminated3_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringInPropertyName1.ts", + "./testTs/test/testts/es6/templates/templateStringUnterminated5.ts", + "./testTs/test/testts/es6/templates/taggedTemplatesWithTypeArguments2.ts", + "./testTs/test/testts/es6/templates/templateStringInObjectLiteralES6.ts", + "./testTs/test/testts/es6/templates/templateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.ts", + "./testTs/test/testts/es6/templates/templateStringInMultiplication.ts", + "./testTs/test/testts/es6/templates/templateStringUnterminated5_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringInCallExpressionES6.ts", + "./testTs/test/testts/es6/templates/templateStringUnterminated3.ts", + "./testTs/test/testts/es6/templates/templateStringInPropertyName2.ts", + "./testTs/test/testts/es6/templates/templateStringUnterminated2.ts", + "./testTs/test/testts/es6/templates/templateStringInDeleteExpression.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithOverloadResolution3.ts", + "./testTs/test/testts/es6/templates/templateStringInNewOperator.ts", + "./testTs/test/testts/es6/templates/templateStringInDivision.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedInstanceOfES6.ts", + "./testTs/test/testts/es6/templates/templateStringInTaggedTemplateES6.ts", + "./testTs/test/testts/es6/templates/templateStringUnterminated4_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringInTaggedTemplate.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithTypeErrorInFunctionExpressionsInSubstitutionExpressionES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithOverloadResolution3_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringInObjectLiteral.ts", + "./testTs/test/testts/es6/templates/templateStringInPropertyNameES6_2.ts", + "./testTs/test/testts/es6/templates/templateStringInModuloES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsTypeArgumentInference.ts", + "./testTs/test/testts/es6/templates/templateStringInFunctionParameterType.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration13_es6.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration10_es6.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration6_es6.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration7_es6.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration8_es6.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration12_es6.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration3_es6.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration5_es6.ts", + "./testTs/test/testts/es6/classDeclaration/superCallFromClassThatHasNoBaseTypeButWithSameSymbolInterface.ts", + "./testTs/test/testts/es6/classDeclaration/superCallBeforeThisAccessing4.ts", + "./testTs/test/testts/es6/classDeclaration/superCallBeforeThisAccessing7.ts", + "./testTs/test/testts/es6/classDeclaration/superCallBeforeThisAccessing3.ts", + "./testTs/test/testts/es6/classDeclaration/parseClassDeclarationInStrictModeByDefaultInES6.ts", + "./testTs/test/testts/es6/classDeclaration/superCallBeforeThisAccessing6.ts", + "./testTs/test/testts/es6/restParameters/readonlyRestParameters.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings24_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates17_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates17_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings17_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates14_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates19_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings14_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates07_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates19_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates12_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings25_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings22_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings14_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings07_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings24_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings21_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates12_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings07_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings21_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings12_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings19_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings17_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates14_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates07_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings20_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings12_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings19_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings25_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings20_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings22_ES6.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of55.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of3.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of30.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of7.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of11.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of33.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of48.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of34.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of29.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of15.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of46.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of52.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of14.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of54.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of12.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of16.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of51.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of6.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of47.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of32.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of2.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of35.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of17.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of10.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of39.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty12.ts", + "./testTs/test/testts/es6/Symbols/symbolType10.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty17.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty32.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit12.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty42.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty52.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty54.ts", + "./testTs/test/testts/es6/Symbols/symbolType3.ts", + "./testTs/test/testts/es6/Symbols/symbolType6.ts", + "./testTs/test/testts/es6/Symbols/symbolType9.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty30.ts", + "./testTs/test/testts/es6/Symbols/symbolType20.ts", + "./testTs/test/testts/es6/Symbols/symbolType8.ts", + "./testTs/test/testts/es6/Symbols/symbolType12.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty44.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty10.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty34.ts", + "./testTs/test/testts/es6/Symbols/symbolType7.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty39.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty53.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty9.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty33.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty7.ts", + "./testTs/test/testts/es6/Symbols/symbolType4.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty35.ts", + "./testTs/test/testts/es6/Symbols/symbolType1.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty25.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty43.ts", + "./testTs/test/testts/es6/Symbols/symbolType5.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty46.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty47.ts", + "./testTs/test/testts/es6/Symbols/symbolType13.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty24.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty3.ts", + "./testTs/test/testts/es6/Symbols/symbolType2.ts", + "./testTs/test/testts/es6/Symbols/symbolType14.ts", + "./testTs/test/testts/es6/Symbols/symbolType15.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty59.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty21.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall10.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInArray6.ts", + "./testTs/test/testts/es6/spread/arraySpreadImportHelpers.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInArray8.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall2.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInArray10.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall4.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInArray5.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall6.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall7.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall8.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall9.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterProperties3.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern13.ts", + "./testTs/test/testts/es6/destructuring/declarationsAndAssignments.ts", + "./testTs/test/testts/es6/destructuring/restElementWithInitializer1.ts", + "./testTs/test/testts/es6/destructuring/objectBindingPatternKeywordIdentifiers01.ts", + "./testTs/test/testts/es6/destructuring/destructuringArrayBindingPatternAndAssignment1ES5iterable.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration8.ts", + "./testTs/test/testts/es6/destructuring/destructuringWithLiteralInitializers2.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration1ES6.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern26.ts", + "./testTs/test/testts/es6/destructuring/destructuringVariableDeclaration2.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern24.ts", + "./testTs/test/testts/es6/destructuring/destructuringTypeAssertionsES5_1.ts", + "./testTs/test/testts/es6/destructuring/optionalBindingParametersInOverloads2.ts", + "./testTs/test/testts/es6/destructuring/restElementWithBindingPattern2.ts", + "./testTs/test/testts/es6/destructuring/restElementWithAssignmentPattern4.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration1ES5.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration6.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration3ES6.ts", + "./testTs/test/testts/es6/destructuring/destructuringVoidStrictNullChecks.ts", + "./testTs/test/testts/es6/destructuring/declarationWithNoInitializer.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern19.ts", + "./testTs/test/testts/es6/destructuring/restElementWithAssignmentPattern2.ts", + "./testTs/test/testts/es6/destructuring/destructuringTypeAssertionsES5_4.ts", + "./testTs/test/testts/es6/destructuring/destructuringObjectBindingPatternAndAssignment3.ts", + "./testTs/test/testts/es6/destructuring/optionalBindingParameters1.ts", + "./testTs/test/testts/es6/destructuring/destructuringTypeAssertionsES5_3.ts", + "./testTs/test/testts/es6/destructuring/destructuringArrayBindingPatternAndAssignment3.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern18.ts", + "./testTs/test/testts/es6/destructuring/restElementWithInitializer2.ts", + "./testTs/test/testts/es6/destructuring/destructuringArrayBindingPatternAndAssignment4.ts", + "./testTs/test/testts/es6/destructuring/missingAndExcessProperties.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern7.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration3ES5.ts", + "./testTs/test/testts/es6/destructuring/optionalBindingParametersInOverloads1.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterProperties4.ts", + "./testTs/test/testts/es6/destructuring/nonIterableRestElement3.ts", + "./testTs/test/testts/es6/destructuring/restElementWithNullInitializer.ts", + "./testTs/test/testts/es6/destructuring/destructuringArrayBindingPatternAndAssignment1ES6.ts", + "./testTs/test/testts/es6/destructuring/destructuringArrayBindingPatternAndAssignment2.ts", + "./testTs/test/testts/es6/destructuring/emptyVariableDeclarationBindingPatterns02_ES5.ts", + "./testTs/test/testts/es6/destructuring/restPropertyWithBindingPattern.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern10.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern6.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern22.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration4.ts", + "./testTs/test/testts/es6/destructuring/emptyObjectBindingPatternParameter04.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern25.ts", + "./testTs/test/testts/es6/destructuring/destructuringAssignabilityCheck.ts", + "./testTs/test/testts/es6/destructuring/destructuringControlFlow.ts", + "./testTs/test/testts/es6/destructuring/destructuringTypeAssertionsES5_6.ts", + "./testTs/test/testts/es6/destructuring/objectBindingPatternKeywordIdentifiers04.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration3ES5iterable.ts", + "./testTs/test/testts/es6/destructuring/destructuringTypeAssertionsES5_7.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern21.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterProperties1.ts", + "./testTs/test/testts/es6/destructuring/emptyVariableDeclarationBindingPatterns02_ES6.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern17.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration5.ts", + "./testTs/test/testts/es6/destructuring/destructuringObjectBindingPatternAndAssignment4.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern16.ts", + "./testTs/test/testts/es6/destructuring/optionalBindingParameters2.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration1ES5iterable.ts", + "./testTs/test/testts/es6/destructuring/objectBindingPatternKeywordIdentifiers02.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterProperties2.ts", + "./testTs/test/testts/es6/destructuring/destructuringTypeAssertionsES5_2.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterProperties5.ts", + "./testTs/test/testts/es6/destructuring/destructuringSpread.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern5.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern28.ts", + "./testTs/test/testts/es6/destructuring/destructuringSameNames.ts", + "./testTs/test/testts/es6/destructuring/emptyVariableDeclarationBindingPatterns02_ES5iterable.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern23.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration2.ts", + "./testTs/test/testts/es6/destructuring/objectBindingPatternKeywordIdentifiers03.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern8.ts", + "./testTs/test/testts/es6/destructuring/destructuringArrayBindingPatternAndAssignment1ES5.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern29.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck9.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck21.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression18_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck48.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck50.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression14_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression1_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck7.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck8.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldStarExpression2_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorInAmbientContext3.d.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorInAmbientContext1.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorInAmbientContext2.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorOverloads1.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorOverloads3.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression8_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck31.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression12_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck63.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression6_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck25.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck57.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck59.ts", + "./testTs/test/testts/es6/yieldExpressions/yieldExpressionInControlFlow.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck39.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldStarExpression1_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck32.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck20.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck61.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression9_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression17_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression11_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression16_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression5_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression2_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression10_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorOverloads2.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck18.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression15_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldStarExpression3_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorInAmbientContext4.d.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck58.ts", + "./testTs/test/testts/es6/modules/defaultExportsCannotMerge01.ts", + "./testTs/test/testts/es6/modules/exportStar-amd.ts", + "./testTs/test/testts/es6/modules/multipleDefaultExports05.ts", + "./testTs/test/testts/es6/modules/defaultExportsCannotMerge03.ts", + "./testTs/test/testts/es6/modules/exportsAndImportsWithUnderscores1.ts", + "./testTs/test/testts/es6/modules/importEmptyFromModuleNotExisted.ts", + "./testTs/test/testts/es6/modules/defaultExportsCannotMerge02.ts", + "./testTs/test/testts/es6/modules/exportStar.ts", + "./testTs/test/testts/es6/modules/multipleDefaultExports03.ts", + "./testTs/test/testts/es6/modules/exportBinding.ts", + "./testTs/test/testts/es6/modules/exportSpellingSuggestion.ts", + "./testTs/test/testts/es6/modules/multipleDefaultExports01.ts", + "./testTs/test/testts/es6/modules/defaultExportsCannotMerge04.ts", + "./testTs/test/testts/es6/modules/exportsAndImportsWithContextualKeywordNames01.ts", + "./testTs/test/testts/es6/modules/multipleDefaultExports04.ts", + "./testTs/test/testts/es6/modules/multipleDefaultExports02.ts", + "./testTs/test/testts/es2020/bigintMissingES2020.ts", + "./testTs/test/testts/es2020/constructBigint.ts", + "./testTs/test/testts/es2020/bigintMissingESNext.ts", + "./testTs/test/testts/es2020/modules/exportAsNamespace_missingEmitHelpers.ts", + "./testTs/test/testts/es2020/modules/exportAsNamespace_exportAssignment.ts", + "./testTs/test/testts/es2020/modules/exportAsNamespace_nonExistent.ts", + "./testTs/test/testts/enums/enumErrors.ts", + "./testTs/test/testts/enums/awaitAndYield.ts", + "./testTs/test/testts/enums/enumConstantMembers.ts", + "./testTs/test/testts/enums/enumMergingErrors.ts", + "./testTs/test/testts/enums/enumConstantMemberWithTemplateLiterals.ts", + "./testTs/test/testts/enums/enumConstantMemberWithString.ts", + "./testTs/test/testts/constEnums/constEnum2.ts", + "./testTs/test/testts/constEnums/constEnumPropertyAccess2.ts" ], "no2015":[ - "./testTs/test/scanner/ecmascript5/scannerNumericLiteral5.ts", - "./testTs/test/scanner/ecmascript5/scannerNumericLiteral7.ts", - "./testTs/test/scanner/ecmascript5/scannerNumericLiteral1.ts", - "./testTs/test/generators/generatorReturnTypeIndirectReferenceToGlobalType.ts", - "./testTs/test/generators/generatorReturnTypeFallback.4.ts", - "./testTs/test/generators/generatorYieldContextualType.ts", - "./testTs/test/generators/generatorReturnTypeFallback.1.ts", - "./testTs/test/generators/restParameterInDownlevelGenerator.ts", - "./testTs/test/generators/generatorReturnTypeFallback.5.ts", - "./testTs/test/statements/for-inStatements/for-inStatementsAsyncIdentifier.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck5.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck2.ts", - "./testTs/test/statements/for-ofStatements/ES3For-ofTypeCheck6.ts", - "./testTs/test/statements/for-ofStatements/ES3For-ofTypeCheck2.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck4.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck1.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck3.ts", - "./testTs/test/statements/for-ofStatements/ES5for-of32.ts", - "./testTs/test/statements/for-ofStatements/ES5For-ofTypeCheck6.ts", - "./testTs/test/controlFlow/controlFlowBindingPatternOrder.ts", - "./testTs/test/controlFlow/controlFlowAssignmentPatternOrder.ts", - "./testTs/test/types/import/importTypeInJSDoc.ts", - "./testTs/test/types/import/importTypeAmdBundleRewrite.ts", - "./testTs/test/types/thisType/thisTypeInTaggedTemplateCall.ts", - "./testTs/test/types/thisType/thisTypeInObjectLiterals2.ts", - "./testTs/test/types/members/objectTypeWithStringNamedNumericProperty.ts", - "./testTs/test/types/localTypes/localTypes1.ts", - "./testTs/test/types/contextualTypes/asyncFunctions/contextuallyTypeAsyncFunctionReturnType.ts", - "./testTs/test/types/contextualTypes/asyncFunctions/contextuallyTypeAsyncFunctionAwaitOperand.ts", - "./testTs/test/types/contextualTypes/jsxAttributes/contextuallyTypedStringLiteralsInJsxAttributes02.tsx", - "./testTs/test/types/contextualTypes/jsdoc/contextualTypeFromJSDoc.ts", - "./testTs/test/types/namedTypes/classWithOnlyPublicMembersEquivalentToInterface2.ts", - "./testTs/test/types/namedTypes/classWithOnlyPublicMembersEquivalentToInterface.ts", - "./testTs/test/types/forAwait/types.forAwait.es2018.1.ts", - "./testTs/test/types/asyncGenerators/types.asyncGenerators.es2018.1.ts", - "./testTs/test/types/spread/objectSpread.ts", - "./testTs/test/types/spread/objectSpreadNoTransform.ts", - "./testTs/test/types/uniqueSymbol/uniqueSymbols.ts", - "./testTs/test/types/uniqueSymbol/uniqueSymbolsDeclarations.ts", - "./testTs/test/types/uniqueSymbol/uniqueSymbolsDeclarationsInJs.ts", - "./testTs/test/types/uniqueSymbol/uniqueSymbolsDeclarationsErrors.ts", - "./testTs/test/types/typeRelationships/typeInference/unionAndIntersectionInference3.ts", - "./testTs/test/types/rest/objectRestParameterES5.ts", - "./testTs/test/es2018/useRegexpGroups.ts", - "./testTs/test/es2018/usePromiseFinally.ts", - "./testTs/test/es2018/es2018IntlAPIs.ts", - "./testTs/test/node/nodeModulesDeclarationEmitDynamicImportWithPackageExports.ts", - "./testTs/test/node/nodeModulesImportHelpersCollisions.ts", - "./testTs/test/node/nodeModulesExportAssignments.ts", - "./testTs/test/node/nodeModulesDeclarationEmitWithPackageExports.ts", - "./testTs/test/node/nodePackageSelfNameScoped.ts", - "./testTs/test/node/nodeModulesTypesVersionPackageExports.ts", - "./testTs/test/node/nodeModulesImportAssertions.ts", - "./testTs/test/node/nodeModulesSynchronousCallErrors.ts", - "./testTs/test/node/nodeModulesImportMeta.ts", - "./testTs/test/node/nodePackageSelfName.ts", - "./testTs/test/node/nodeModulesPackageExports.ts", - "./testTs/test/node/nodeModulesImportResolutionNoCycle.ts", - "./testTs/test/node/nodeModulesImportResolutionIntoExport.ts", - "./testTs/test/node/nodeModulesTopLevelAwait.ts", - "./testTs/test/node/nodeModulesGeneratedNameCollisions.ts", - "./testTs/test/node/nodeModulesExportsSpecifierGenerationConditions.ts", - "./testTs/test/node/nodeModulesExportsBlocksSpecifierResolution.ts", - "./testTs/test/node/nodeModulesExportsSpecifierGenerationDirectory.ts", - "./testTs/test/node/nodeModulesImportHelpersCollisions3.ts", - "./testTs/test/node/nodeModulesForbidenSyntax.ts", - "./testTs/test/node/nodeModulesExportsSpecifierGenerationPattern.ts", - "./testTs/test/node/nodeModulesResolveJsonModule.ts", - "./testTs/test/node/nodeModulesPackagePatternExportsTrailers.ts", - "./testTs/test/node/nodeModulesDynamicImport.ts", - "./testTs/test/node/nodeModulesConditionalPackageExports.ts", - "./testTs/test/node/nodeModules1.ts", - "./testTs/test/node/nodeModulesImportHelpersCollisions2.ts", - "./testTs/test/node/legacyNodeModulesExportsSpecifierGenerationConditions.ts", - "./testTs/test/node/nodeModulesCjsFormatFileAlwaysHasDefault.ts", - "./testTs/test/node/nodeModulesPackageImports.ts", - "./testTs/test/node/nodeModulesPackagePatternExports.ts", - "./testTs/test/node/nodeModulesImportAssignments.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsGeneratedNameCollisions.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsImportHelpersCollisions1.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsImportAssignment.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsImportHelpersCollisions2.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsImportHelpersCollisions3.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsCjsFromJs.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsDynamicImport.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsSynchronousCallErrors.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsPackageExports.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsTopLevelAwait.ts", - "./testTs/test/node/allowJs/nodeAllowJsPackageSelfName.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsPackagePatternExports.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsExportAssignment.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsImportMeta.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsConditionalPackageExports.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsPackageImports.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJs1.ts", - "./testTs/test/node/allowJs/nodeModulesAllowJsPackagePatternExportsTrailers.ts", - "./testTs/test/classes/mixinAbstractClassesReturnTypeInference.ts", - "./testTs/test/classes/mixinAbstractClasses.ts", - "./testTs/test/classes/classExpressions/classWithStaticFieldInParameterBindingPattern.3.ts", - "./testTs/test/classes/classExpressions/classWithStaticFieldInParameterInitializer.3.ts", - "./testTs/test/classes/classExpressions/extendClassExpressionFromModule.ts", - "./testTs/test/classes/methodDeclarations/optionalMethodDeclarations.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlockUseBeforeDef1.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock25.ts", - "./testTs/test/classes/propertyMemberDeclarations/optionalMethod.ts", - "./testTs/test/classes/propertyMemberDeclarations/accessorsOverrideProperty5.ts", - "./testTs/test/classes/propertyMemberDeclarations/propertyOverridesMethod.ts", - "./testTs/test/classes/propertyMemberDeclarations/thisPropertyOverridesAccessors.ts", - "./testTs/test/classes/propertyMemberDeclarations/optionalProperty.ts", - "./testTs/test/classes/propertyMemberDeclarations/defineProperty.ts", - "./testTs/test/classes/propertyMemberDeclarations/overrideInterfaceProperty.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorWithES5.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberAccessorDeclarations/ambientAccessors.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorWithMismatchedAccessibilityModifiers.ts", - "./testTs/test/classes/members/accessibility/privateClassPropertyAccessibleWithinNestedClass.ts", - "./testTs/test/classes/members/accessibility/protectedClassPropertyAccessibleWithinNestedClass.ts", - "./testTs/test/classes/members/accessibility/protectedClassPropertyAccessibleWithinSubclass.ts", - "./testTs/test/classes/members/accessibility/protectedClassPropertyAccessibleWithinClass.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers13.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers3.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers11.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers9.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers3.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers4.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers5.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers4.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers10.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers8.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers12.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers7.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers2.ts", - "./testTs/test/classes/members/classTypes/genericSetterInClassType.ts", - "./testTs/test/classes/members/classTypes/genericSetterInClassTypeJsDoc.ts", - "./testTs/test/classes/members/privateNames/privateNameField.ts", - "./testTs/test/classes/members/privateNames/privateNameBadSuperUseDefineForClassFields.ts", - "./testTs/test/classes/members/privateNames/privateNamesAndStaticMethods.ts", - "./testTs/test/classes/members/privateNames/privateNameES5Ban.ts", - "./testTs/test/classes/members/privateNames/privateNameSetterExprReturnValue.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticsAndStaticMethods.ts", - "./testTs/test/classes/members/privateNames/privateNamesAndMethods.ts", - "./testTs/test/classes/members/privateNames/privateNamesAssertion.ts", - "./testTs/test/classes/members/privateNames/privateNameErrorsOnNotUseDefineForClassFieldsInEsNext.ts", - "./testTs/test/classes/members/privateNames/privateNamesAndFields.ts", - "./testTs/test/classes/members/privateNames/privateNameInInExpressionTransform.ts", - "./testTs/test/classes/members/privateNames/privateNameMethodAsync.ts", - "./testTs/test/jsx/tsxPreserveEmit2.tsx", - "./testTs/test/jsx/tsxReactEmit6.tsx", - "./testTs/test/jsx/tsxAttributeResolution14.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentOverload3.tsx", - "./testTs/test/jsx/tsxSfcReturnNull.tsx", - "./testTs/test/jsx/tsxAttributeResolution11.tsx", - "./testTs/test/jsx/tsxExternalModuleEmit1.tsx", - "./testTs/test/jsx/correctlyMarkAliasAsReferences3.tsx", - "./testTs/test/jsx/tsxAttributeResolution10.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentsWithTypeArguments2.tsx", - "./testTs/test/jsx/tsxSfcReturnNullStrictNullChecks.tsx", - "./testTs/test/jsx/tsxSfcReturnUndefinedStrictNullChecks.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentsWithTypeArguments4.tsx", - "./testTs/test/jsx/tsxExternalModuleEmit2.tsx", - "./testTs/test/jsx/correctlyMarkAliasAsReferences2.tsx", - "./testTs/test/jsx/tsxReactEmit7.tsx", - "./testTs/test/jsx/correctlyMarkAliasAsReferences1.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentOverload6.tsx", - "./testTs/test/jsx/tsxPreserveEmit1.tsx", - "./testTs/test/jsx/tsxReactEmit5.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentWithDefaultTypeParameter2.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentsWithTypeArguments5.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentOverload2.tsx", - "./testTs/test/jsx/tsxPreserveEmit3.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentOverload4.tsx", - "./testTs/test/jsx/tsxElementResolution19.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentWithDefaultTypeParameter1.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentsWithTypeArguments3.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentOverload5.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentOverload1.tsx", - "./testTs/test/jsx/tsxElementResolution17.tsx", - "./testTs/test/jsx/correctlyMarkAliasAsReferences4.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponentsWithTypeArguments1.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponents3.tsx", - "./testTs/test/jsx/tsxAttributeResolution9.tsx", - "./testTs/test/jsx/jsxs/jsxJsxsCjsTransformCustomImportPragma.tsx", - "./testTs/test/jsx/jsxs/jsxJsxsCjsTransformSubstitutesNamesFragment.tsx", - "./testTs/test/jsx/jsxs/jsxJsxsCjsTransformKeyPropCustomImportPragma.tsx", - "./testTs/test/jsx/jsxs/jsxJsxsCjsTransformKeyProp.tsx", - "./testTs/test/jsx/jsxs/jsxJsxsCjsTransformSubstitutesNames.tsx", - "./testTs/test/jsx/jsxs/jsxJsxsCjsTransformNestedSelfClosingChild.tsx", - "./testTs/test/jsx/jsxs/jsxJsxsCjsTransformChildren.tsx", - "./testTs/test/jsx/jsxs/jsxJsxsCjsTransformCustomImport.tsx", - "./testTs/test/jsx/jsxs/jsxJsxsCjsTransformKeyPropCustomImport.tsx", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString1.ts", - "./testTs/test/es7/exponentiationOperator/emitCompoundExponentiationOperator1.ts", - "./testTs/test/es7/exponentiationOperator/emitCompoundExponentiationOperator2.ts", - "./testTs/test/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS2.ts", - "./testTs/test/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS1.ts", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperator3.ts", - "./testTs/test/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS3.ts", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString3.ts", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString3ES6.ts", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperator2.ts", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperatorInTempalteString4.ts", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString1ES6.ts", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString2.ts", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString2ES6.ts", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperator1.ts", - "./testTs/test/es7/exponentiationOperator/emitExponentiationOperatorInTempalteString4ES6.ts", - "./testTs/test/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1.ts", - "./testTs/test/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS4.ts", - "./testTs/test/ambient/ambientInsideNonAmbientExternalModule.ts", - "./testTs/test/ambient/ambientExternalModuleMerging.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.9.ts", - "./testTs/test/externalModules/exportAssignmentTopLevelEnumdule.ts", - "./testTs/test/externalModules/amdImportNotAsPrimaryExpression.ts", - "./testTs/test/externalModules/exportAmbientClassNameWithObject.ts", - "./testTs/test/externalModules/exportAssignmentOfExportNamespaceWithDefault.ts", - "./testTs/test/externalModules/commonJSImportAsPrimaryExpression.ts", - "./testTs/test/externalModules/topLevelAwaitNonModule.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.10.ts", - "./testTs/test/externalModules/umd7.ts", - "./testTs/test/externalModules/exportAssignmentTopLevelClodule.ts", - "./testTs/test/externalModules/umd-augmentation-4.ts", - "./testTs/test/externalModules/umd6.ts", - "./testTs/test/externalModules/umd-augmentation-2.ts", - "./testTs/test/externalModules/umd1.ts", - "./testTs/test/externalModules/umd3.ts", - "./testTs/test/externalModules/exportAssignmentTopLevelIdentifier.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.7.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.12.ts", - "./testTs/test/externalModules/reexportClassDefinition.ts", - "./testTs/test/externalModules/exportAssignmentTopLevelFundule.ts", - "./testTs/test/externalModules/exportAssignmentGenericType.ts", - "./testTs/test/externalModules/exportAssignmentMergedInterface.ts", - "./testTs/test/externalModules/nameWithRelativePaths.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.1.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.2.ts", - "./testTs/test/externalModules/umd-augmentation-3.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.4.ts", - "./testTs/test/externalModules/umd-augmentation-1.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.3.ts", - "./testTs/test/externalModules/exportAssignmentMergedModule.ts", - "./testTs/test/externalModules/umd4.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.6.ts", - "./testTs/test/externalModules/importImportOnlyModule.ts", - "./testTs/test/externalModules/nameDelimitedBySlashes.ts", - "./testTs/test/externalModules/topLevelAwait.2.ts", - "./testTs/test/externalModules/commonJSImportNotAsPrimaryExpression.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.8.ts", - "./testTs/test/externalModules/topLevelAwait.3.ts", - "./testTs/test/externalModules/exportAssignmentCircularModules.ts", - "./testTs/test/externalModules/umd9.ts", - "./testTs/test/externalModules/nameWithFileExtension.ts", - "./testTs/test/externalModules/topLevelFileModule.ts", - "./testTs/test/externalModules/topLevelAmbientModule.ts", - "./testTs/test/externalModules/amdImportAsPrimaryExpression.ts", - "./testTs/test/externalModules/topLevelAwaitErrors.5.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target4.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target8.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target5.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target7.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target2.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target6.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target11.ts", - "./testTs/test/externalModules/esnext/esnextmodulekind.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target12.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES5Target3.ts", - "./testTs/test/externalModules/esnext/exnextmodulekindExportClassNameWithObject.ts", - "./testTs/test/externalModules/es6/es6modulekind.ts", - "./testTs/test/externalModules/typeOnly/preserveValueImports_importsNotUsedAsValues.ts", - "./testTs/test/externalModules/typeOnly/preserveValueImports.ts", - "./testTs/test/externalModules/typeOnly/preserveValueImports_errors.ts", - "./testTs/test/es2017/useObjectValuesAndEntries4.ts", - "./testTs/test/es2017/useSharedArrayBuffer5.ts", - "./testTs/test/es2017/useSharedArrayBuffer4.ts", - "./testTs/test/es2017/useSharedArrayBuffer1.ts", - "./testTs/test/es2017/useObjectValuesAndEntries1.ts", - "./testTs/test/async/es2017/asyncMethodWithSuper_es2017.ts", - "./testTs/test/async/es2017/awaitInheritedPromise_es2017.ts", - "./testTs/test/async/es2017/await_unaryExpression_es2017.ts", - "./testTs/test/async/es2017/awaitClassExpression_es2017.ts", - "./testTs/test/async/es2017/asyncUseStrict_es2017.ts", - "./testTs/test/async/es2017/asyncMethodWithSuperConflict_es6.ts", - "./testTs/test/async/es2017/asyncAwait_es2017.ts", - "./testTs/test/async/es2017/awaitCallExpression/awaitCallExpression5_es2017.ts", - "./testTs/test/async/es2017/awaitCallExpression/awaitCallExpression6_es2017.ts", - "./testTs/test/async/es2017/awaitCallExpression/awaitCallExpression2_es2017.ts", - "./testTs/test/async/es2017/awaitCallExpression/awaitCallExpression1_es2017.ts", - "./testTs/test/async/es2017/awaitCallExpression/awaitCallExpression3_es2017.ts", - "./testTs/test/async/es2017/awaitCallExpression/awaitCallExpression8_es2017.ts", - "./testTs/test/async/es2017/awaitCallExpression/awaitCallExpression4_es2017.ts", - "./testTs/test/async/es2017/awaitCallExpression/awaitCallExpression7_es2017.ts", - "./testTs/test/async/es2017/awaitBinaryExpression/awaitBinaryExpression1_es2017.ts", - "./testTs/test/async/es2017/awaitBinaryExpression/awaitBinaryExpression3_es2017.ts", - "./testTs/test/async/es2017/awaitBinaryExpression/awaitBinaryExpression4_es2017.ts", - "./testTs/test/async/es2017/awaitBinaryExpression/awaitBinaryExpression2_es2017.ts", - "./testTs/test/async/es2017/awaitBinaryExpression/awaitBinaryExpression5_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration4_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration2_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration14_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration1_es2017.ts", - "./testTs/test/async/es2017/functionDeclarations/asyncFunctionDeclaration11_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunction4_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/arrowFunctionWithParameterNameAsync_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunction1_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunctionCapturesThis_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunction2_es2017.ts", - "./testTs/test/async/es2017/asyncArrowFunction/asyncArrowFunctionCapturesArguments_es2017.ts", - "./testTs/test/async/es5/asyncMethodWithSuper_es5.ts", - "./testTs/test/async/es5/awaitUnion_es5.ts", - "./testTs/test/async/es5/asyncQualifiedReturnType_es5.ts", - "./testTs/test/async/es5/awaitClassExpression_es5.ts", - "./testTs/test/async/es5/asyncUseStrict_es5.ts", - "./testTs/test/async/es5/asyncImportedPromise_es5.ts", - "./testTs/test/async/es5/asyncAwait_es5.ts", - "./testTs/test/async/es5/asyncMultiFile_es5.ts", - "./testTs/test/async/es5/asyncAwaitNestedClasses_es5.ts", - "./testTs/test/async/es5/awaitCallExpression/awaitCallExpression1_es5.ts", - "./testTs/test/async/es5/awaitCallExpression/awaitCallExpression2_es5.ts", - "./testTs/test/async/es5/awaitCallExpression/awaitCallExpression5_es5.ts", - "./testTs/test/async/es5/awaitCallExpression/awaitCallExpression6_es5.ts", - "./testTs/test/async/es5/awaitCallExpression/awaitCallExpression7_es5.ts", - "./testTs/test/async/es5/awaitCallExpression/awaitCallExpression3_es5.ts", - "./testTs/test/async/es5/awaitCallExpression/awaitCallExpression4_es5.ts", - "./testTs/test/async/es5/awaitCallExpression/awaitCallExpression8_es5.ts", - "./testTs/test/async/es5/awaitBinaryExpression/awaitBinaryExpression4_es5.ts", - "./testTs/test/async/es5/awaitBinaryExpression/awaitBinaryExpression3_es5.ts", - "./testTs/test/async/es5/awaitBinaryExpression/awaitBinaryExpression5_es5.ts", - "./testTs/test/async/es5/awaitBinaryExpression/awaitBinaryExpression1_es5.ts", - "./testTs/test/async/es5/awaitBinaryExpression/awaitBinaryExpression2_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration2_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration14_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration4_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration1_es5.ts", - "./testTs/test/async/es5/functionDeclarations/asyncFunctionDeclaration11_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunction2_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunction4_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunctionCapturesThis_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunction11_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/arrowFunctionWithParameterNameAsync_es5.ts", - "./testTs/test/async/es5/asyncArrowFunction/asyncArrowFunction1_es5.ts", - "./testTs/test/async/es6/asyncMultiFile_es6.ts", - "./testTs/test/async/es6/asyncUseStrict_es6.ts", - "./testTs/test/async/es6/asyncAliasReturnType_es6.ts", - "./testTs/test/async/es6/asyncMethodWithSuper_es6.ts", - "./testTs/test/async/es6/awaitUnion_es6.ts", - "./testTs/test/async/es6/await_unaryExpression_es6.ts", - "./testTs/test/async/es6/asyncAwait_es6.ts", - "./testTs/test/async/es6/awaitClassExpression_es6.ts", - "./testTs/test/async/es6/awaitCallExpression/awaitCallExpression5_es6.ts", - "./testTs/test/async/es6/awaitCallExpression/awaitCallExpression6_es6.ts", - "./testTs/test/async/es6/awaitCallExpression/awaitCallExpression3_es6.ts", - "./testTs/test/async/es6/awaitCallExpression/awaitCallExpression2_es6.ts", - "./testTs/test/async/es6/awaitCallExpression/awaitCallExpression1_es6.ts", - "./testTs/test/async/es6/awaitCallExpression/awaitCallExpression7_es6.ts", - "./testTs/test/async/es6/awaitCallExpression/awaitCallExpression8_es6.ts", - "./testTs/test/async/es6/awaitCallExpression/awaitCallExpression4_es6.ts", - "./testTs/test/async/es6/awaitBinaryExpression/awaitBinaryExpression5_es6.ts", - "./testTs/test/async/es6/awaitBinaryExpression/awaitBinaryExpression1_es6.ts", - "./testTs/test/async/es6/awaitBinaryExpression/awaitBinaryExpression4_es6.ts", - "./testTs/test/async/es6/awaitBinaryExpression/awaitBinaryExpression3_es6.ts", - "./testTs/test/async/es6/awaitBinaryExpression/awaitBinaryExpression2_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration11_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration1_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration2_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration14_es6.ts", - "./testTs/test/async/es6/functionDeclarations/asyncFunctionDeclaration4_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunction2_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunctionCapturesThis_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunction4_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunctionCapturesArguments_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/asyncArrowFunction1_es6.ts", - "./testTs/test/async/es6/asyncArrowFunction/arrowFunctionWithParameterNameAsync_es6.ts", - "./testTs/test/typings/typingsLookupAmd.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES6System.ts", - "./testTs/test/dynamicImport/importCallExpressionInAMD2.ts", - "./testTs/test/dynamicImport/importCallExpressionInCJS2.ts", - "./testTs/test/dynamicImport/importCallExpression2ES2020.ts", - "./testTs/test/dynamicImport/importCallExpressionES6CJS.ts", - "./testTs/test/dynamicImport/importCallExpressionInSystem1.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES3UMD.ts", - "./testTs/test/dynamicImport/importCallExpressionInExportEqualsAMD.ts", - "./testTs/test/dynamicImport/importCallExpressionInSystem2.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES3CJS.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES2020.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedSystem2.ts", - "./testTs/test/dynamicImport/importCallExpressionInAMD4.ts", - "./testTs/test/dynamicImport/importCallExpressionES5CJS.ts", - "./testTs/test/dynamicImport/importCallExpressionDeclarationEmit2.ts", - "./testTs/test/dynamicImport/importCallExpressionInAMD1.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES6UMD.ts", - "./testTs/test/dynamicImport/importCallExpressionInCJS3.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedCJS2.ts", - "./testTs/test/dynamicImport/importCallExpressionInUMD3.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedES20202.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedUMD2.ts", - "./testTs/test/dynamicImport/importCallExpressionES6System.ts", - "./testTs/test/dynamicImport/importCallExpressionInSystem4.ts", - "./testTs/test/dynamicImport/importCallExpressionInUMD4.ts", - "./testTs/test/dynamicImport/importCallExpressionReturnPromiseOfAny.ts", - "./testTs/test/dynamicImport/importCallExpression1ES2020.ts", - "./testTs/test/dynamicImport/importCallExpressionES6AMD.ts", - "./testTs/test/dynamicImport/importCallExpressionES5UMD.ts", - "./testTs/test/dynamicImport/importCallExpressionShouldNotGetParen.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedES2020.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES3AMD.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedAMD2.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES3System.ts", - "./testTs/test/dynamicImport/importCallExpressionInCJS5.ts", - "./testTs/test/dynamicImport/importCallExpression4ES2020.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES5CJS.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedAMD.ts", - "./testTs/test/dynamicImport/importCallExpressionInExportEqualsUMD.ts", - "./testTs/test/dynamicImport/importCallExpressionInExportEqualsCJS.ts", - "./testTs/test/dynamicImport/importCallExpressionInCJS1.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedCJS.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES5AMD.ts", - "./testTs/test/dynamicImport/importCallExpressionInSystem3.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES6CJS.ts", - "./testTs/test/dynamicImport/importCallExpressionInUMD2.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES6AMD.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES5System.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedSystem.ts", - "./testTs/test/dynamicImport/importCallExpressionInUMD1.ts", - "./testTs/test/dynamicImport/importCallExpressionES5System.ts", - "./testTs/test/dynamicImport/importCallExpressionInAMD3.ts", - "./testTs/test/dynamicImport/importCallExpressionDeclarationEmit3.ts", - "./testTs/test/dynamicImport/importCallExpressionNestedUMD.ts", - "./testTs/test/dynamicImport/importCallExpressionInCJS4.ts", - "./testTs/test/dynamicImport/importCallExpression3ES2020.ts", - "./testTs/test/dynamicImport/importCallExpressionDeclarationEmit1.ts", - "./testTs/test/dynamicImport/importCallExpressionInScriptContext1.ts", - "./testTs/test/dynamicImport/importCallExpressionAsyncES5UMD.ts", - "./testTs/test/dynamicImport/importCallExpressionES6UMD.ts", - "./testTs/test/dynamicImport/importCallExpressionES5AMD.ts", - "./testTs/test/jsdoc/thisTag2.ts", - "./testTs/test/jsdoc/jsdocAccessibilityTagsDeclarations.ts", - "./testTs/test/jsdoc/extendsTag3.ts", - "./testTs/test/jsdoc/jsdocVariableDeclarationWithTypeAnnotation.ts", - "./testTs/test/jsdoc/jsdocReadonlyDeclarations.ts", - "./testTs/test/jsdoc/jsdocSignatureOnReturnedFunction.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignedClassExpressionAnonymous.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignedClassInstance3.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsClassLeadingOptional.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportSubAssignments.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsMissingGenerics.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsReusesExistingTypeAnnotations.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsReexportAliases.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsModuleReferenceHasEmit.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsMultipleExportFromMerge.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsOptionalTypeLiteralProps2.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsClassMethod.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsClassAccessor.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsJSDocRedirectedLookups.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsGetterSetter.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsFunctionKeywordPropExhaustive.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsFunctionLikeClasses.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsClassStaticMethodAugmentation.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsImportAliasExposedWithinNamespace.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsFunctionPrototypeStatic.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportSpecifierNonlocal.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignedClassExpression.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportForms.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignedClassInstance2.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignedClassExpressionShadowing.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsImportTypeBundled.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsClassStatic.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignmentExpressionPlusSecondary.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsReexportedCjsAlias.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsConstsAsNamespacesWithReferences.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsMissingTypeParameters.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsRestArgsWithThisTypeInJSDocFunction.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsClassImplementsGenericsSerialization.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsFunctionClassesCjsExportAssignment.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsFunctionKeywordProp.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsReferenceToClassInstanceCrossFile.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsCommonjsRelativePath.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsTypeReferences3.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsReexportAliasesEsModuleInterop.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsNestedParams.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsTypeReferences.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsNonIdentifierInferredNames.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsPrivateFields01.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsTypeReferences2.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsImportAliasExposedWithinNamespaceCjs.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignedClassExpressionAnonymousWithSub.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsClasses.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsDefault.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsEnumTag.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsClassExtendsVisibility.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsDocCommentsOnConsts.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsComputedNames.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsOptionalTypeLiteralProps1.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsJson.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsReactComponents.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignmentWithKeywordName.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignedVisibility.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignedClassInstance1.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsPackageJson.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsParameterTagReusesInputNodeInEmit2.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsFunctionJSDoc.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportAssignedConstructorFunction.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsFunctionLikeClasses2.ts", - "./testTs/test/override/override14.ts", - "./testTs/test/es2019/importMeta/importMeta.ts", - "./testTs/test/es2019/importMeta/importMetaNarrowing.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInClassAccessors.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInProperties.ts", - "./testTs/test/expressions/typeGuards/typeGuardsObjectMethods.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInExternalModule.ts", - "./testTs/test/expressions/thisKeyword/typeOfThis.ts", - "./testTs/test/expressions/asOperator/asOperator4.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator_es2020.ts", - "./testTs/test/expressions/arrayLiterals/arrayLiterals2ES6.ts", - "./testTs/test/expressions/optionalChaining/optionalChainingInLoop.ts", - "./testTs/test/expressions/optionalChaining/optionalChainingInArrow.ts", - "./testTs/test/expressions/optionalChaining/callChain/thisMethodCall.ts", - "./testTs/test/expressions/optionalChaining/callChain/superMethodCall.ts", - "./testTs/test/expressions/optionalChaining/callChain/callChainWithSuper.ts", - "./testTs/test/expressions/functionCalls/newWithSpreadES6.ts", - "./testTs/test/expressions/functionCalls/newWithSpreadES5.ts", - "./testTs/test/expressions/functionCalls/callWithSpreadES6.ts", - "./testTs/test/expressions/superPropertyAccess/superSymbolIndexedAccess6.ts", - "./testTs/test/expressions/superPropertyAccess/superSymbolIndexedAccess1.ts", - "./testTs/test/expressions/superPropertyAccess/superSymbolIndexedAccess5.ts", - "./testTs/test/expressions/superPropertyAccess/superPropertyAccessNoError.ts", - "./testTs/test/expressions/superPropertyAccess/superSymbolIndexedAccess2.ts", - "./testTs/test/expressions/propertyAccess/propertyAccessNumericLiterals.ts", - "./testTs/test/expressions/typeAssertions/constAssertionOnEnum.ts", - "./testTs/test/expressions/contextualTyping/iterableContextualTyping1.ts", - "./testTs/test/expressions/contextualTyping/taggedTemplateContextualTyping1.ts", - "./testTs/test/expressions/contextualTyping/taggedTemplateContextualTyping2.ts", - "./testTs/test/expressions/contextualTyping/parenthesizedContexualTyping3.ts", - "./testTs/test/emitter/es2018/asyncGenerators/emitter.asyncGenerators.classMethods.es2018.ts", - "./testTs/test/emitter/es2018/asyncGenerators/emitter.asyncGenerators.functionExpressions.es2018.ts", - "./testTs/test/emitter/es2018/asyncGenerators/emitter.asyncGenerators.objectLiteralMethods.es2018.ts", - "./testTs/test/emitter/es2018/asyncGenerators/emitter.asyncGenerators.functionDeclarations.es2018.ts", - "./testTs/test/emitter/es2019/noCatchBinding/emitter.noCatchBinding.es2019.ts", - "./testTs/test/emitter/es5/asyncGenerators/emitter.asyncGenerators.objectLiteralMethods.es5.ts", - "./testTs/test/emitter/es5/asyncGenerators/emitter.asyncGenerators.functionDeclarations.es5.ts", - "./testTs/test/emitter/es5/asyncGenerators/emitter.asyncGenerators.functionExpressions.es5.ts", - "./testTs/test/emitter/es5/asyncGenerators/emitter.asyncGenerators.classMethods.es5.ts", - "./testTs/test/declarationEmit/libReferenceDeclarationEmit.ts", - "./testTs/test/declarationEmit/typesVersionsDeclarationEmit.multiFileBackReferenceToUnmapped.ts", - "./testTs/test/declarationEmit/libReferenceNoLibBundle.ts", - "./testTs/test/declarationEmit/typesVersionsDeclarationEmit.multiFile.ts", - "./testTs/test/declarationEmit/typesVersionsDeclarationEmit.ambient.ts", - "./testTs/test/declarationEmit/libReferenceDeclarationEmitBundle.ts", - "./testTs/test/declarationEmit/libReferenceNoLib.ts", - "./testTs/test/declarationEmit/typePredicates/declarationEmitIdentifierPredicates01.ts", - "./testTs/test/declarationEmit/typePredicates/declarationEmitThisPredicates01.ts", - "./testTs/test/declarationEmit/typePredicates/declarationEmitIdentifierPredicatesWithPrivateName01.ts", - "./testTs/test/declarationEmit/typePredicates/declarationEmitThisPredicatesWithPrivateName01.ts", - "./testTs/test/decorators/decoratorMetadataWithTypeOnlyImport.ts", - "./testTs/test/decorators/1.0lib-noErrors.ts", - "./testTs/test/decorators/decoratorMetadata.ts", - "./testTs/test/decorators/class/decoratorOnClass2.ts", - "./testTs/test/decorators/class/decoratedClassExportsCommonJS2.ts", - "./testTs/test/decorators/class/decoratorInstantiateModulesInFunctionBodies.ts", - "./testTs/test/decorators/class/decoratorOnClass1.ts", - "./testTs/test/decorators/class/decoratorOnClass4.ts", - "./testTs/test/decorators/class/decoratedClassExportsCommonJS1.ts", - "./testTs/test/decorators/class/decoratedBlockScopedClass3.ts", - "./testTs/test/decorators/class/decoratedClassFromExternalModule.ts", - "./testTs/test/decorators/class/decoratedBlockScopedClass1.ts", - "./testTs/test/decorators/class/decoratedBlockScopedClass2.ts", - "./testTs/test/decorators/class/decoratorOnClass9.ts", - "./testTs/test/decorators/class/decoratedClassExportsSystem2.ts", - "./testTs/test/decorators/class/decoratedClassExportsSystem1.ts", - "./testTs/test/decorators/class/decoratorOnClass5.ts", - "./testTs/test/decorators/class/constructor/decoratorOnClassConstructor4.ts", - "./testTs/test/decorators/class/constructor/decoratorOnClassConstructor3.ts", - "./testTs/test/decorators/class/constructor/parameter/decoratorOnClassConstructorParameter1.ts", - "./testTs/test/decorators/class/constructor/parameter/decoratorOnClassConstructorParameter5.ts", - "./testTs/test/decorators/class/accessor/decoratorOnClassAccessor4.ts", - "./testTs/test/decorators/class/accessor/decoratorOnClassAccessor5.ts", - "./testTs/test/decorators/class/accessor/decoratorOnClassAccessor1.ts", - "./testTs/test/decorators/class/accessor/decoratorOnClassAccessor8.ts", - "./testTs/test/decorators/class/accessor/decoratorOnClassAccessor2.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod14.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod15.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod5.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod2.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethodOverload2.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod16.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod18.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod13.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod7.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod1.ts", - "./testTs/test/decorators/class/method/decoratorOnClassMethod4.ts", - "./testTs/test/decorators/class/method/parameter/decoratorOnClassMethodParameter1.ts", - "./testTs/test/decorators/class/method/parameter/decoratorOnClassMethodParameter2.ts", - "./testTs/test/decorators/class/property/decoratorOnClassProperty2.ts", - "./testTs/test/decorators/class/property/decoratorOnClassProperty10.ts", - "./testTs/test/decorators/class/property/decoratorOnClassProperty1.ts", - "./testTs/test/moduleResolution/typesVersions.emptyTypes.ts", - "./testTs/test/moduleResolution/scopedPackagesClassic.ts", - "./testTs/test/moduleResolution/typesVersions.ambientModules.ts", - "./testTs/test/moduleResolution/typesVersions.multiFile.ts", - "./testTs/test/moduleResolution/typesVersions.justIndex.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserAccessors4.ts", - "./testTs/test/parser/ecmascript5/Accessors/parserAccessors2.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration4.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration5.ts", - "./testTs/test/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration6.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolIndexer3.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolIndexer1.ts", - "./testTs/test/parser/ecmascript5/Symbols/parserES5SymbolIndexer2.ts", - "./testTs/test/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression7.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement17.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement19.ts", - "./testTs/test/parser/ecmascript5/Statements/parserES5ForOfStatement18.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement24.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement18.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement19.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement17.ts", - "./testTs/test/parser/ecmascript6/Iterators/parserForOfStatement23.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolProperty9.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolIndexer2.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolProperty1.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolProperty8.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolProperty3.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolIndexer3.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolProperty6.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolProperty4.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolIndexer1.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolProperty7.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolProperty2.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolProperty5.ts", - "./testTs/test/parser/ecmascript6/Symbols/parserSymbolIndexer4.ts", - "./testTs/test/salsa/typeFromPropertyAssignmentOutOfOrder.ts", - "./testTs/test/salsa/typeFromPropertyAssignment9_1.ts", - "./testTs/test/salsa/typeFromPropertyAssignment12.ts", - "./testTs/test/salsa/typeFromParamTagForFunction.ts", - "./testTs/test/salsa/typeFromPropertyAssignment10_1.ts", - "./testTs/test/salsa/typeFromPropertyAssignment8.ts", - "./testTs/test/salsa/lateBoundClassMemberAssignmentJS.ts", - "./testTs/test/salsa/constructorFunctions2.ts", - "./testTs/test/salsa/typeFromPropertyAssignment13.ts", - "./testTs/test/salsa/typeFromPropertyAssignment8_1.ts", - "./testTs/test/salsa/lateBoundAssignmentDeclarationSupport7.ts", - "./testTs/test/salsa/moduleExportAliasImported.ts", - "./testTs/test/salsa/typeFromPropertyAssignment9.ts", - "./testTs/test/salsa/typeFromPropertyAssignment6.ts", - "./testTs/test/salsa/typeFromPropertyAssignment7.ts", - "./testTs/test/salsa/typeFromPropertyAssignment10.ts", - "./testTs/test/salsa/typeFromPropertyAssignment5.ts", - "./testTs/test/salsa/assignmentToVoidZero1.ts", - "./testTs/test/salsa/lateBoundClassMemberAssignmentJS2.ts", - "./testTs/test/salsa/typeFromPropertyAssignment11.ts", - "./testTs/test/salsa/lateBoundClassMemberAssignmentJS3.ts", - "./testTs/test/Symbols/ES5SymbolProperty1.ts", - "./testTs/test/Symbols/ES5SymbolType1.ts", - "./testTs/test/Symbols/ES5SymbolProperty3.ts", - "./testTs/test/Symbols/ES5SymbolProperty7.ts", - "./testTs/test/Symbols/ES5SymbolProperty5.ts", - "./testTs/test/Symbols/ES5SymbolProperty4.ts", - "./testTs/test/es6/moduleExportsAmd/decoratedDefaultExportsGetExportedAmd.ts", - "./testTs/test/es6/moduleExportsAmd/outFilerootDirModuleNamesAmd.ts", - "./testTs/test/es6/moduleExportsAmd/anonymousDefaultExportsAmd.ts", - "./testTs/test/es6/moduleExportsAmd/defaultExportsGetExportedAmd.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignmentES6.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesES6.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesWithModuleES6.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandProperties.ts", - "./testTs/test/es6/newTarget/newTarget.es5.ts", - "./testTs/test/es6/newTarget/newTargetNarrowing.ts", - "./testTs/test/es6/newTarget/newTarget.es6.ts", - "./testTs/test/es6/memberFunctionDeclarations/MemberFunctionDeclaration7_es6.ts", - "./testTs/test/es6/memberFunctionDeclarations/MemberFunctionDeclaration1_es6.ts", - "./testTs/test/es6/memberFunctionDeclarations/MemberFunctionDeclaration2_es6.ts", - "./testTs/test/es6/functionPropertyAssignments/FunctionPropertyAssignments1_es6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments08.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments09_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments11_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments05_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments14_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments07_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionAsIsES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments16_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunction.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments13_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments18_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments17_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments19_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionsAsIsES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments08_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments03_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionAsIs.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments10_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments06_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments04_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments15_ES6.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionWhenUsingArguments13.ts", - "./testTs/test/es6/arrowFunction/emitArrowFunctionsAsIs.ts", - "./testTs/test/es6/binaryAndOctalIntegerLiteral/binaryIntegerLiteralES6.ts", - "./testTs/test/es6/binaryAndOctalIntegerLiteral/binaryIntegerLiteral.ts", - "./testTs/test/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteral.ts", - "./testTs/test/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteralES6.ts", - "./testTs/test/es6/classExpressions/classExpressionES63.ts", - "./testTs/test/es6/classExpressions/classExpressionES62.ts", - "./testTs/test/es6/classExpressions/classExpressionES61.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames25_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames4_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames41_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType1_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames29_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames7_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames46_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType7_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames41_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames33_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesSourceMap2_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames16_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames33_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames29_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType7_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames25_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames11_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames46_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit5_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType3_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames18_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames22_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType4_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames28_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames47_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames7_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames48_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames1_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType5_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames31_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames16_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType6_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit2_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames47_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit5_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType5_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames48_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit2_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames1_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit1_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesDeclarationEmit1_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames20_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesSourceMap2_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames18_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames22_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType2_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames31_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames37_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames10_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames11_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType6_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames28_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesSourceMap1_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames13_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames10_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames4_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames20_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType3_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames37_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType4_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesSourceMap1_ES6.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames13_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType2_ES5.ts", - "./testTs/test/es6/computedProperties/computedPropertyNamesContextualType1_ES5.ts", - "./testTs/test/es6/defaultParameters/emitDefaultParametersFunctionES6.ts", - "./testTs/test/es6/defaultParameters/emitDefaultParametersMethod.ts", - "./testTs/test/es6/defaultParameters/emitDefaultParametersFunctionProperty.ts", - "./testTs/test/es6/defaultParameters/emitDefaultParametersFunction.ts", - "./testTs/test/es6/defaultParameters/emitDefaultParametersMethodES6.ts", - "./testTs/test/es6/defaultParameters/emitDefaultParametersFunctionPropertyES6.ts", - "./testTs/test/es6/defaultParameters/emitDefaultParametersFunctionExpression.ts", - "./testTs/test/es6/defaultParameters/emitDefaultParametersFunctionExpressionES6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration8_es6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration7_es6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration10_es6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration9_es6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration12_es6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration3_es6.ts", - "./testTs/test/es6/variableDeclarations/VariableDeclaration5_es6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithTypedTagsES6.ts", - "./testTs/test/es6/templates/templateStringInPropertyAssignmentES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedTemplateStringES6.ts", - "./testTs/test/es6/templates/templateStringInTypeAssertionES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedArrowFunctionES6.ts", - "./testTs/test/es6/templates/templateStringWhitespaceEscapes2_ES6.ts", - "./testTs/test/es6/templates/templateStringWithEmptyLiteralPortionsES6.ts", - "./testTs/test/es6/templates/templateStringControlCharacterEscapes03_ES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedFunctionExpressionES6.ts", - "./testTs/test/es6/templates/templateStringWithBackslashEscapes01_ES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedTypeAssertionOnAdditionES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02_ES6.ts", - "./testTs/test/es6/templates/templateStringWithOpenCommentInStringPortionES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedInOperatorES6.ts", - "./testTs/test/es6/templates/templateStringInArrowFunctionES6.ts", - "./testTs/test/es6/templates/templateStringWithPropertyAccessES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedAdditionES6.ts", - "./testTs/test/es6/templates/templateStringControlCharacterEscapes01_ES6.ts", - "./testTs/test/es6/templates/templateStringInInOperatorES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedConditionalES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedObjectLiteralES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedNewOperatorES6.ts", - "./testTs/test/es6/templates/templateStringTermination2_ES6.ts", - "./testTs/test/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes01_ES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedModuloES6.ts", - "./testTs/test/es6/templates/templateStringInTypeOfES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithTagNamedDeclareES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01_ES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithManyCallAndMemberExpressionsES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedDivisionES6.ts", - "./testTs/test/es6/templates/templateStringTermination5_ES6.ts", - "./testTs/test/es6/templates/templateStringInSwitchAndCaseES6.ts", - "./testTs/test/es6/templates/templateStringInWhileES6.ts", - "./testTs/test/es6/templates/templateStringBinaryOperationsES6.ts", - "./testTs/test/es6/templates/taggedTemplatesWithTypeArguments1.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedTypeOfOperatorES6.ts", - "./testTs/test/es6/templates/templateStringInYieldKeyword.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedCommentsES6.ts", - "./testTs/test/es6/templates/templateStringTermination3_ES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedYieldKeywordES6.ts", - "./testTs/test/es6/templates/templateStringInParenthesesES6.ts", - "./testTs/test/es6/templates/templateStringMultiline1_ES6.ts", - "./testTs/test/es6/templates/templateStringInIndexExpressionES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithTagsTypedAsAnyES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedMultiplicationES6.ts", - "./testTs/test/es6/templates/templateStringWhitespaceEscapes1_ES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedArrayES6.ts", - "./testTs/test/es6/templates/templateStringControlCharacterEscapes02_ES6.ts", - "./testTs/test/es6/templates/templateStringMultiline2_ES6.ts", - "./testTs/test/es6/templates/templateStringInConditionalES6.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithOverloadResolution2_ES6.ts", - "./testTs/test/es6/templates/templateStringInFunctionExpressionES6.ts", - "./testTs/test/es6/templates/templateStringInEqualityChecksES6.ts", - "./testTs/test/es6/templates/templateStringControlCharacterEscapes04_ES6.ts", - "./testTs/test/es6/templates/templateStringMultiline3_ES6.ts", - "./testTs/test/es6/templates/templateStringTermination4_ES6.ts", - "./testTs/test/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes02_ES6.ts", - "./testTs/test/es6/templates/templateStringInUnaryPlusES6.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedUnaryPlusES6.ts", - "./testTs/test/es6/templates/templateStringTermination1_ES6.ts", - "./testTs/test/es6/moduleExportsCommonjs/decoratedDefaultExportsGetExportedCommonjs.ts", - "./testTs/test/es6/moduleExportsCommonjs/defaultExportsGetExportedCommonjs.ts", - "./testTs/test/es6/moduleExportsCommonjs/anonymousDefaultExportsCommonjs.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration4_es6.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration9_es6.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration2_es6.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration1_es6.ts", - "./testTs/test/es6/functionDeclarations/FunctionDeclaration11_es6.ts", - "./testTs/test/es6/moduleExportsSystem/outFilerootDirModuleNamesSystem.ts", - "./testTs/test/es6/moduleExportsSystem/decoratedDefaultExportsGetExportedSystem.ts", - "./testTs/test/es6/moduleExportsSystem/anonymousDefaultExportsSystem.ts", - "./testTs/test/es6/moduleExportsSystem/defaultExportsGetExportedSystem.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithExtensionInES6.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithPropertyAssignmentInES6.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithExtensionAndTypeArgumentInES6.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithThisKeywordInES6.ts", - "./testTs/test/es6/classDeclaration/exportDefaultClassWithStaticPropertyAssignmentsInES6.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithStaticPropertyAssignmentInES6.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithTypeArgumentAndOverloadInES6.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithSuperMethodCall01.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithMethodInES6.ts", - "./testTs/test/es6/classDeclaration/classWithSemicolonClassElementES61.ts", - "./testTs/test/es6/classDeclaration/classWithSemicolonClassElementES62.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithGetterSetterInES6.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationOverloadInES6.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithConstructorInES6.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithLiteralPropertyNameInES6.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithTypeArgumentInES6.ts", - "./testTs/test/es6/restParameters/emitRestParametersFunctionES6.ts", - "./testTs/test/es6/restParameters/emitRestParametersFunctionExpression.ts", - "./testTs/test/es6/restParameters/emitRestParametersFunctionExpressionES6.ts", - "./testTs/test/es6/restParameters/emitRestParametersFunction.ts", - "./testTs/test/es6/restParameters/emitRestParametersFunctionPropertyES6.ts", - "./testTs/test/es6/restParameters/emitRestParametersMethod.ts", - "./testTs/test/es6/restParameters/emitRestParametersFunctionProperty.ts", - "./testTs/test/es6/restParameters/emitRestParametersMethodES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions01_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings06_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions07_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions12_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings13_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions05_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates18_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings15_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings13_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions17_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings18_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions02_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions19_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions09_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates03_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions01_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions07_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates15_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates20_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions15_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings18_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates10_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings05_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions03_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates15_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions06_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions02_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings06_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates10_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions14_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions05_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions18_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions11_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates11_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates02_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings10_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates08_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates01_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings05_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions16_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings01_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions04_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings23_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions04_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings08_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates18_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates09_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings02_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates11_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions03_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates16_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions10_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions19_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates03_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings16_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions08_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates13_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions15_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings09_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings04_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates04_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings01_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions16_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates08_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings03_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates05_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions17_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings11_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates01_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions10_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings09_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates16_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions06_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates09_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates06_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings11_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates04_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates02_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions12_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings02_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions14_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions08_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates20_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings23_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions13_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates05_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates06_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings04_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings16_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions18_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions13_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings08_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings10_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings15_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions09_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions11_ES5.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates13_ES6.ts", - "./testTs/test/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings03_ES6.ts", - "./testTs/test/es6/decorators/class/decoratorOnClass5.es6.ts", - "./testTs/test/es6/decorators/class/decoratorOnClass8.es6.ts", - "./testTs/test/es6/decorators/class/decoratorOnClass7.es6.ts", - "./testTs/test/es6/decorators/class/decoratorOnClass4.es6.ts", - "./testTs/test/es6/decorators/class/decoratorOnClass3.es6.ts", - "./testTs/test/es6/decorators/class/decoratorOnClass6.es6.ts", - "./testTs/test/es6/decorators/class/decoratorOnClass1.es6.ts", - "./testTs/test/es6/decorators/class/decoratorOnClass2.es6.ts", - "./testTs/test/es6/for-ofStatements/for-of8.ts", - "./testTs/test/es6/for-ofStatements/for-of18.ts", - "./testTs/test/es6/for-ofStatements/for-of9.ts", - "./testTs/test/es6/for-ofStatements/for-of25.ts", - "./testTs/test/es6/for-ofStatements/for-of58.ts", - "./testTs/test/es6/for-ofStatements/for-of27.ts", - "./testTs/test/es6/for-ofStatements/for-of53.ts", - "./testTs/test/es6/for-ofStatements/for-of5.ts", - "./testTs/test/es6/for-ofStatements/for-of24.ts", - "./testTs/test/es6/for-ofStatements/for-of38.ts", - "./testTs/test/es6/for-ofStatements/for-of45.ts", - "./testTs/test/es6/for-ofStatements/for-of44.ts", - "./testTs/test/es6/for-ofStatements/for-of36.ts", - "./testTs/test/es6/for-ofStatements/for-of19.ts", - "./testTs/test/es6/for-ofStatements/for-of42.ts", - "./testTs/test/es6/for-ofStatements/for-of28.ts", - "./testTs/test/es6/for-ofStatements/for-of23.ts", - "./testTs/test/es6/for-ofStatements/for-of41.ts", - "./testTs/test/es6/for-ofStatements/for-of40.ts", - "./testTs/test/es6/for-ofStatements/for-of4.ts", - "./testTs/test/es6/for-ofStatements/for-of26.ts", - "./testTs/test/es6/for-ofStatements/for-of22.ts", - "./testTs/test/es6/for-ofStatements/for-of20.ts", - "./testTs/test/es6/for-ofStatements/for-of21.ts", - "./testTs/test/es6/for-ofStatements/for-of56.ts", - "./testTs/test/es6/for-ofStatements/for-of1.ts", - "./testTs/test/es6/for-ofStatements/for-of31.ts", - "./testTs/test/es6/for-ofStatements/for-of57.ts", - "./testTs/test/es6/for-ofStatements/for-of43.ts", - "./testTs/test/es6/for-ofStatements/for-of50.ts", - "./testTs/test/es6/for-ofStatements/for-of37.ts", - "./testTs/test/es6/for-ofStatements/for-of49.ts", - "./testTs/test/es6/for-ofStatements/for-of13.ts", - "./testTs/test/es6/propertyAccess/propertyAccessNumericLiterals.es6.ts", - "./testTs/test/es6/functionExpressions/FunctionExpression2_es6.ts", - "./testTs/test/es6/functionExpressions/FunctionExpression1_es6.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit8.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit5.ts", - "./testTs/test/es6/Symbols/symbolProperty40.ts", - "./testTs/test/es6/Symbols/symbolType11.ts", - "./testTs/test/es6/Symbols/symbolProperty20.ts", - "./testTs/test/es6/Symbols/symbolProperty58.ts", - "./testTs/test/es6/Symbols/symbolProperty48.ts", - "./testTs/test/es6/Symbols/symbolProperty11.ts", - "./testTs/test/es6/Symbols/symbolProperty23.ts", - "./testTs/test/es6/Symbols/symbolProperty14.ts", - "./testTs/test/es6/Symbols/symbolProperty4.ts", - "./testTs/test/es6/Symbols/symbolProperty50.ts", - "./testTs/test/es6/Symbols/symbolType18.ts", - "./testTs/test/es6/Symbols/symbolProperty49.ts", - "./testTs/test/es6/Symbols/symbolProperty26.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit1.ts", - "./testTs/test/es6/Symbols/symbolProperty8.ts", - "./testTs/test/es6/Symbols/symbolProperty28.ts", - "./testTs/test/es6/Symbols/symbolProperty38.ts", - "./testTs/test/es6/Symbols/symbolProperty15.ts", - "./testTs/test/es6/Symbols/symbolProperty31.ts", - "./testTs/test/es6/Symbols/symbolType17.ts", - "./testTs/test/es6/Symbols/symbolProperty57.ts", - "./testTs/test/es6/Symbols/symbolProperty18.ts", - "./testTs/test/es6/Symbols/symbolProperty27.ts", - "./testTs/test/es6/Symbols/symbolProperty2.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit13.ts", - "./testTs/test/es6/Symbols/symbolProperty22.ts", - "./testTs/test/es6/Symbols/symbolProperty6.ts", - "./testTs/test/es6/Symbols/symbolProperty29.ts", - "./testTs/test/es6/Symbols/symbolProperty13.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit2.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit3.ts", - "./testTs/test/es6/Symbols/symbolProperty41.ts", - "./testTs/test/es6/Symbols/symbolProperty37.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit10.ts", - "./testTs/test/es6/Symbols/symbolProperty45.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit4.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit6.ts", - "./testTs/test/es6/Symbols/symbolType16.ts", - "./testTs/test/es6/Symbols/symbolProperty56.ts", - "./testTs/test/es6/Symbols/symbolProperty16.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit9.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit11.ts", - "./testTs/test/es6/Symbols/symbolProperty5.ts", - "./testTs/test/es6/Symbols/symbolProperty55.ts", - "./testTs/test/es6/Symbols/symbolProperty19.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit14.ts", - "./testTs/test/es6/Symbols/symbolDeclarationEmit7.ts", - "./testTs/test/es6/Symbols/symbolProperty51.ts", - "./testTs/test/es6/Symbols/symbolProperty36.ts", - "./testTs/test/es6/Symbols/symbolProperty1.ts", - "./testTs/test/es6/Symbols/symbolType19.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall11.ts", - "./testTs/test/es6/spread/iteratorSpreadInArray2.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall5.ts", - "./testTs/test/es6/spread/iteratorSpreadInArray4.ts", - "./testTs/test/es6/spread/iteratorSpreadInArray.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall3.ts", - "./testTs/test/es6/spread/iteratorSpreadInArray11.ts", - "./testTs/test/es6/spread/iteratorSpreadInArray7.ts", - "./testTs/test/es6/spread/iteratorSpreadInArray3.ts", - "./testTs/test/es6/spread/iteratorSpreadInArray9.ts", - "./testTs/test/es6/spread/iteratorSpreadInCall12.ts", - "./testTs/test/es6/destructuring/emptyVariableDeclarationBindingPatterns01_ES5iterable.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern11.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern4.ts", - "./testTs/test/es6/destructuring/emptyVariableDeclarationBindingPatterns01_ES6.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern15.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns04_ES5iterable.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns01_ES5iterable.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns01_ES5.ts", - "./testTs/test/es6/destructuring/destructuringObjectBindingPatternAndAssignment8.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern9.ts", - "./testTs/test/es6/destructuring/destructuringObjectBindingPatternAndAssignment1ES6.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns02_ES6.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern2.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern30.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern1.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration7ES5.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns03_ES6.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern20.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns01_ES6.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern12.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns02_ES5iterable.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern3.ts", - "./testTs/test/es6/destructuring/destructuringTypeAssertionsES5_5.ts", - "./testTs/test/es6/destructuring/destructuringVariableDeclaration1ES6.ts", - "./testTs/test/es6/destructuring/destructuringReassignsRightHandSide.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern14.ts", - "./testTs/test/es6/destructuring/iterableArrayPattern27.ts", - "./testTs/test/es6/destructuring/destructuringObjectBindingPatternAndAssignment7.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns04_ES6.ts", - "./testTs/test/es6/destructuring/emptyVariableDeclarationBindingPatterns01_ES5.ts", - "./testTs/test/es6/destructuring/restElementWithAssignmentPattern1.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns04_ES5.ts", - "./testTs/test/es6/destructuring/nonIterableRestElement2.ts", - "./testTs/test/es6/destructuring/destructuringParameterDeclaration7ES5iterable.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns03_ES5iterable.ts", - "./testTs/test/es6/destructuring/destructuringObjectBindingPatternAndAssignment6.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns03_ES5.ts", - "./testTs/test/es6/destructuring/emptyAssignmentPatterns02_ES5.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck30.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck33.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck40.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck1.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck24.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression7_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck13.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck44.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck28.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck41.ts", - "./testTs/test/es6/yieldExpressions/generatorInAmbientContext5.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck27.ts", - "./testTs/test/es6/yieldExpressions/YieldStarExpression4_es6.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression4_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck62.ts", - "./testTs/test/es6/yieldExpressions/generatorOverloads5.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck29.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck49.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck43.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck54.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck4.ts", - "./testTs/test/es6/yieldExpressions/generatorNoImplicitReturns.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression13_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck37.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck16.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck3.ts", - "./testTs/test/es6/yieldExpressions/generatorOverloads4.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck36.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck17.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck53.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck56.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck52.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck10.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck45.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck55.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck38.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck46.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck5.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck35.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck19.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck11.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck15.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck51.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck12.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck47.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck23.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck14.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck34.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck42.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck26.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression3_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck60.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck22.ts", - "./testTs/test/es6/yieldExpressions/generatorTypeCheck2.ts", - "./testTs/test/es6/yieldExpressions/YieldExpression19_es6.ts", - "./testTs/test/es6/yieldExpressions/generatorInAmbientContext6.ts", - "./testTs/test/es6/modules/exportsAndImportsWithContextualKeywordNames02.ts", - "./testTs/test/es6/modules/exportsAndImports3-es6.ts", - "./testTs/test/es6/modules/exportsAndImports4-amd.ts", - "./testTs/test/es6/modules/exportsAndImportsWithUnderscores4.ts", - "./testTs/test/es6/modules/exportAndImport-es5-amd.ts", - "./testTs/test/es6/modules/exportsAndImports1-es6.ts", - "./testTs/test/es6/modules/exportsAndImportsWithUnderscores3.ts", - "./testTs/test/es6/modules/exportsAndImports2.ts", - "./testTs/test/es6/modules/exportsAndImports2-amd.ts", - "./testTs/test/es6/modules/defaultExportWithOverloads01.ts", - "./testTs/test/es6/modules/exportsAndImports4-es6.ts", - "./testTs/test/es6/modules/exportsAndImports1.ts", - "./testTs/test/es6/modules/exportsAndImportsWithUnderscores2.ts", - "./testTs/test/es6/modules/exportsAndImports3.ts", - "./testTs/test/es6/modules/exportAndImport-es3-amd.ts", - "./testTs/test/es6/modules/exportsAndImports1-amd.ts", - "./testTs/test/es6/modules/exportAndImport-es3.ts", - "./testTs/test/es6/modules/exportAndImport-es5.ts", - "./testTs/test/es6/modules/exportsAndImports4.ts", - "./testTs/test/es6/modules/defaultExportInAwaitExpression01.ts", - "./testTs/test/es6/modules/defaultExportInAwaitExpression02.ts", - "./testTs/test/es6/modules/reExportDefaultExport.ts", - "./testTs/test/es6/modules/exportsAndImports2-es6.ts", - "./testTs/test/es6/modules/exportsAndImports3-amd.ts", - "./testTs/test/es6/moduleExportsUmd/defaultExportsGetExportedUmd.ts", - "./testTs/test/es6/moduleExportsUmd/decoratedDefaultExportsGetExportedUmd.ts", - "./testTs/test/es6/moduleExportsUmd/anonymousDefaultExportsUmd.ts", - "./testTs/test/es2020/bigintMissingES2019.ts", - "./testTs/test/es2020/es2020IntlAPIs.ts", - "./testTs/test/enums/enumExportMergingES6.ts", - "./testTs/test/constEnums/constEnumPropertyAccess1.ts" + "./testTs/test/testts/scanner/ecmascript5/scannerNumericLiteral5.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerNumericLiteral7.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerNumericLiteral1.ts", + "./testTs/test/testts/generators/generatorReturnTypeIndirectReferenceToGlobalType.ts", + "./testTs/test/testts/generators/generatorReturnTypeFallback.4.ts", + "./testTs/test/testts/generators/generatorYieldContextualType.ts", + "./testTs/test/testts/generators/generatorReturnTypeFallback.1.ts", + "./testTs/test/testts/generators/restParameterInDownlevelGenerator.ts", + "./testTs/test/testts/generators/generatorReturnTypeFallback.5.ts", + "./testTs/test/testts/statements/for-inStatements/for-inStatementsAsyncIdentifier.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck5.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck2.ts", + "./testTs/test/testts/statements/for-ofStatements/ES3For-ofTypeCheck6.ts", + "./testTs/test/testts/statements/for-ofStatements/ES3For-ofTypeCheck2.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck4.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck1.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck3.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5for-of32.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-ofTypeCheck6.ts", + "./testTs/test/testts/controlFlow/controlFlowBindingPatternOrder.ts", + "./testTs/test/testts/controlFlow/controlFlowAssignmentPatternOrder.ts", + "./testTs/test/testts/types/import/importTypeInJSDoc.ts", + "./testTs/test/testts/types/import/importTypeAmdBundleRewrite.ts", + "./testTs/test/testts/types/thisType/thisTypeInTaggedTemplateCall.ts", + "./testTs/test/testts/types/thisType/thisTypeInObjectLiterals2.ts", + "./testTs/test/testts/types/members/objectTypeWithStringNamedNumericProperty.ts", + "./testTs/test/testts/types/localTypes/localTypes1.ts", + "./testTs/test/testts/types/contextualTypes/asyncFunctions/contextuallyTypeAsyncFunctionReturnType.ts", + "./testTs/test/testts/types/contextualTypes/asyncFunctions/contextuallyTypeAsyncFunctionAwaitOperand.ts", + "./testTs/test/testts/types/contextualTypes/jsxAttributes/contextuallyTypedStringLiteralsInJsxAttributes02.tsx", + "./testTs/test/testts/types/contextualTypes/jsdoc/contextualTypeFromJSDoc.ts", + "./testTs/test/testts/types/namedTypes/classWithOnlyPublicMembersEquivalentToInterface2.ts", + "./testTs/test/testts/types/namedTypes/classWithOnlyPublicMembersEquivalentToInterface.ts", + "./testTs/test/testts/types/forAwait/types.forAwait.es2018.1.ts", + "./testTs/test/testts/types/asyncGenerators/types.asyncGenerators.es2018.1.ts", + "./testTs/test/testts/types/spread/objectSpread.ts", + "./testTs/test/testts/types/spread/objectSpreadNoTransform.ts", + "./testTs/test/testts/types/uniqueSymbol/uniqueSymbols.ts", + "./testTs/test/testts/types/uniqueSymbol/uniqueSymbolsDeclarations.ts", + "./testTs/test/testts/types/uniqueSymbol/uniqueSymbolsDeclarationsInJs.ts", + "./testTs/test/testts/types/uniqueSymbol/uniqueSymbolsDeclarationsErrors.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/unionAndIntersectionInference3.ts", + "./testTs/test/testts/types/rest/objectRestParameterES5.ts", + "./testTs/test/testts/es2018/useRegexpGroups.ts", + "./testTs/test/testts/es2018/usePromiseFinally.ts", + "./testTs/test/testts/es2018/es2018IntlAPIs.ts", + "./testTs/test/testts/node/nodeModulesDeclarationEmitDynamicImportWithPackageExports.ts", + "./testTs/test/testts/node/nodeModulesImportHelpersCollisions.ts", + "./testTs/test/testts/node/nodeModulesExportAssignments.ts", + "./testTs/test/testts/node/nodeModulesDeclarationEmitWithPackageExports.ts", + "./testTs/test/testts/node/nodePackageSelfNameScoped.ts", + "./testTs/test/testts/node/nodeModulesTypesVersionPackageExports.ts", + "./testTs/test/testts/node/nodeModulesImportAssertions.ts", + "./testTs/test/testts/node/nodeModulesSynchronousCallErrors.ts", + "./testTs/test/testts/node/nodeModulesImportMeta.ts", + "./testTs/test/testts/node/nodePackageSelfName.ts", + "./testTs/test/testts/node/nodeModulesPackageExports.ts", + "./testTs/test/testts/node/nodeModulesImportResolutionNoCycle.ts", + "./testTs/test/testts/node/nodeModulesImportResolutionIntoExport.ts", + "./testTs/test/testts/node/nodeModulesTopLevelAwait.ts", + "./testTs/test/testts/node/nodeModulesGeneratedNameCollisions.ts", + "./testTs/test/testts/node/nodeModulesExportsSpecifierGenerationConditions.ts", + "./testTs/test/testts/node/nodeModulesExportsBlocksSpecifierResolution.ts", + "./testTs/test/testts/node/nodeModulesExportsSpecifierGenerationDirectory.ts", + "./testTs/test/testts/node/nodeModulesImportHelpersCollisions3.ts", + "./testTs/test/testts/node/nodeModulesForbidenSyntax.ts", + "./testTs/test/testts/node/nodeModulesExportsSpecifierGenerationPattern.ts", + "./testTs/test/testts/node/nodeModulesResolveJsonModule.ts", + "./testTs/test/testts/node/nodeModulesPackagePatternExportsTrailers.ts", + "./testTs/test/testts/node/nodeModulesDynamicImport.ts", + "./testTs/test/testts/node/nodeModulesConditionalPackageExports.ts", + "./testTs/test/testts/node/nodeModules1.ts", + "./testTs/test/testts/node/nodeModulesImportHelpersCollisions2.ts", + "./testTs/test/testts/node/legacyNodeModulesExportsSpecifierGenerationConditions.ts", + "./testTs/test/testts/node/nodeModulesCjsFormatFileAlwaysHasDefault.ts", + "./testTs/test/testts/node/nodeModulesPackageImports.ts", + "./testTs/test/testts/node/nodeModulesPackagePatternExports.ts", + "./testTs/test/testts/node/nodeModulesImportAssignments.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsGeneratedNameCollisions.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsImportHelpersCollisions1.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsImportAssignment.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsImportHelpersCollisions2.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsImportHelpersCollisions3.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsCjsFromJs.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsDynamicImport.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsSynchronousCallErrors.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsPackageExports.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsTopLevelAwait.ts", + "./testTs/test/testts/node/allowJs/nodeAllowJsPackageSelfName.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsPackagePatternExports.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsExportAssignment.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsImportMeta.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsConditionalPackageExports.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsPackageImports.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJs1.ts", + "./testTs/test/testts/node/allowJs/nodeModulesAllowJsPackagePatternExportsTrailers.ts", + "./testTs/test/testts/classes/mixinAbstractClassesReturnTypeInference.ts", + "./testTs/test/testts/classes/mixinAbstractClasses.ts", + "./testTs/test/testts/classes/classExpressions/classWithStaticFieldInParameterBindingPattern.3.ts", + "./testTs/test/testts/classes/classExpressions/classWithStaticFieldInParameterInitializer.3.ts", + "./testTs/test/testts/classes/classExpressions/extendClassExpressionFromModule.ts", + "./testTs/test/testts/classes/methodDeclarations/optionalMethodDeclarations.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlockUseBeforeDef1.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock25.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/optionalMethod.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/accessorsOverrideProperty5.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/propertyOverridesMethod.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/thisPropertyOverridesAccessors.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/optionalProperty.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/defineProperty.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/overrideInterfaceProperty.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorWithES5.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberAccessorDeclarations/ambientAccessors.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberAccessorDeclarations/accessorWithMismatchedAccessibilityModifiers.ts", + "./testTs/test/testts/classes/members/accessibility/privateClassPropertyAccessibleWithinNestedClass.ts", + "./testTs/test/testts/classes/members/accessibility/protectedClassPropertyAccessibleWithinNestedClass.ts", + "./testTs/test/testts/classes/members/accessibility/protectedClassPropertyAccessibleWithinSubclass.ts", + "./testTs/test/testts/classes/members/accessibility/protectedClassPropertyAccessibleWithinClass.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers13.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers3.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers11.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers9.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers3.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers4.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers5.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers4.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers10.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers8.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers12.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers7.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassOverridesProtectedMembers2.ts", + "./testTs/test/testts/classes/members/classTypes/genericSetterInClassType.ts", + "./testTs/test/testts/classes/members/classTypes/genericSetterInClassTypeJsDoc.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameField.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameBadSuperUseDefineForClassFields.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesAndStaticMethods.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameES5Ban.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameSetterExprReturnValue.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticsAndStaticMethods.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesAndMethods.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesAssertion.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameErrorsOnNotUseDefineForClassFieldsInEsNext.ts", + "./testTs/test/testts/classes/members/privateNames/privateNamesAndFields.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameInInExpressionTransform.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameMethodAsync.ts", + "./testTs/test/testts/jsx/tsxPreserveEmit2.tsx", + "./testTs/test/testts/jsx/tsxReactEmit6.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution14.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentOverload3.tsx", + "./testTs/test/testts/jsx/tsxSfcReturnNull.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution11.tsx", + "./testTs/test/testts/jsx/tsxExternalModuleEmit1.tsx", + "./testTs/test/testts/jsx/correctlyMarkAliasAsReferences3.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution10.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentsWithTypeArguments2.tsx", + "./testTs/test/testts/jsx/tsxSfcReturnNullStrictNullChecks.tsx", + "./testTs/test/testts/jsx/tsxSfcReturnUndefinedStrictNullChecks.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentsWithTypeArguments4.tsx", + "./testTs/test/testts/jsx/tsxExternalModuleEmit2.tsx", + "./testTs/test/testts/jsx/correctlyMarkAliasAsReferences2.tsx", + "./testTs/test/testts/jsx/tsxReactEmit7.tsx", + "./testTs/test/testts/jsx/correctlyMarkAliasAsReferences1.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentOverload6.tsx", + "./testTs/test/testts/jsx/tsxPreserveEmit1.tsx", + "./testTs/test/testts/jsx/tsxReactEmit5.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentWithDefaultTypeParameter2.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentsWithTypeArguments5.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentOverload2.tsx", + "./testTs/test/testts/jsx/tsxPreserveEmit3.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentOverload4.tsx", + "./testTs/test/testts/jsx/tsxElementResolution19.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentWithDefaultTypeParameter1.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentsWithTypeArguments3.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentOverload5.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentOverload1.tsx", + "./testTs/test/testts/jsx/tsxElementResolution17.tsx", + "./testTs/test/testts/jsx/correctlyMarkAliasAsReferences4.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponentsWithTypeArguments1.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponents3.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution9.tsx", + "./testTs/test/testts/jsx/jsxs/jsxJsxsCjsTransformCustomImportPragma.tsx", + "./testTs/test/testts/jsx/jsxs/jsxJsxsCjsTransformSubstitutesNamesFragment.tsx", + "./testTs/test/testts/jsx/jsxs/jsxJsxsCjsTransformKeyPropCustomImportPragma.tsx", + "./testTs/test/testts/jsx/jsxs/jsxJsxsCjsTransformKeyProp.tsx", + "./testTs/test/testts/jsx/jsxs/jsxJsxsCjsTransformSubstitutesNames.tsx", + "./testTs/test/testts/jsx/jsxs/jsxJsxsCjsTransformNestedSelfClosingChild.tsx", + "./testTs/test/testts/jsx/jsxs/jsxJsxsCjsTransformChildren.tsx", + "./testTs/test/testts/jsx/jsxs/jsxJsxsCjsTransformCustomImport.tsx", + "./testTs/test/testts/jsx/jsxs/jsxJsxsCjsTransformKeyPropCustomImport.tsx", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString1.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitCompoundExponentiationOperator1.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitCompoundExponentiationOperator2.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS2.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS1.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperator3.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS3.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString3.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString3ES6.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperator2.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperatorInTempalteString4.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString1ES6.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString2.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperatorInTemplateString2ES6.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperator1.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitExponentiationOperatorInTempalteString4ES6.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithPropertyAccessingOnLHS1.ts", + "./testTs/test/testts/es7/exponentiationOperator/emitCompoundExponentiationAssignmentWithIndexingOnLHS4.ts", + "./testTs/test/testts/ambient/ambientInsideNonAmbientExternalModule.ts", + "./testTs/test/testts/ambient/ambientExternalModuleMerging.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.9.ts", + "./testTs/test/testts/externalModules/exportAssignmentTopLevelEnumdule.ts", + "./testTs/test/testts/externalModules/amdImportNotAsPrimaryExpression.ts", + "./testTs/test/testts/externalModules/exportAmbientClassNameWithObject.ts", + "./testTs/test/testts/externalModules/exportAssignmentOfExportNamespaceWithDefault.ts", + "./testTs/test/testts/externalModules/commonJSImportAsPrimaryExpression.ts", + "./testTs/test/testts/externalModules/topLevelAwaitNonModule.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.10.ts", + "./testTs/test/testts/externalModules/umd7.ts", + "./testTs/test/testts/externalModules/exportAssignmentTopLevelClodule.ts", + "./testTs/test/testts/externalModules/umd-augmentation-4.ts", + "./testTs/test/testts/externalModules/umd6.ts", + "./testTs/test/testts/externalModules/umd-augmentation-2.ts", + "./testTs/test/testts/externalModules/umd1.ts", + "./testTs/test/testts/externalModules/umd3.ts", + "./testTs/test/testts/externalModules/exportAssignmentTopLevelIdentifier.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.7.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.12.ts", + "./testTs/test/testts/externalModules/reexportClassDefinition.ts", + "./testTs/test/testts/externalModules/exportAssignmentTopLevelFundule.ts", + "./testTs/test/testts/externalModules/exportAssignmentGenericType.ts", + "./testTs/test/testts/externalModules/exportAssignmentMergedInterface.ts", + "./testTs/test/testts/externalModules/nameWithRelativePaths.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.1.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.2.ts", + "./testTs/test/testts/externalModules/umd-augmentation-3.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.4.ts", + "./testTs/test/testts/externalModules/umd-augmentation-1.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.3.ts", + "./testTs/test/testts/externalModules/exportAssignmentMergedModule.ts", + "./testTs/test/testts/externalModules/umd4.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.6.ts", + "./testTs/test/testts/externalModules/importImportOnlyModule.ts", + "./testTs/test/testts/externalModules/nameDelimitedBySlashes.ts", + "./testTs/test/testts/externalModules/topLevelAwait.2.ts", + "./testTs/test/testts/externalModules/commonJSImportNotAsPrimaryExpression.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.8.ts", + "./testTs/test/testts/externalModules/topLevelAwait.3.ts", + "./testTs/test/testts/externalModules/exportAssignmentCircularModules.ts", + "./testTs/test/testts/externalModules/umd9.ts", + "./testTs/test/testts/externalModules/nameWithFileExtension.ts", + "./testTs/test/testts/externalModules/topLevelFileModule.ts", + "./testTs/test/testts/externalModules/topLevelAmbientModule.ts", + "./testTs/test/testts/externalModules/amdImportAsPrimaryExpression.ts", + "./testTs/test/testts/externalModules/topLevelAwaitErrors.5.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target4.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target8.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target5.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target7.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target2.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target6.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target11.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekind.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target12.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES5Target3.ts", + "./testTs/test/testts/externalModules/esnext/exnextmodulekindExportClassNameWithObject.ts", + "./testTs/test/testts/externalModules/es6/es6modulekind.ts", + "./testTs/test/testts/externalModules/typeOnly/preserveValueImports_importsNotUsedAsValues.ts", + "./testTs/test/testts/externalModules/typeOnly/preserveValueImports.ts", + "./testTs/test/testts/externalModules/typeOnly/preserveValueImports_errors.ts", + "./testTs/test/testts/es2017/useObjectValuesAndEntries4.ts", + "./testTs/test/testts/es2017/useSharedArrayBuffer5.ts", + "./testTs/test/testts/es2017/useSharedArrayBuffer4.ts", + "./testTs/test/testts/es2017/useSharedArrayBuffer1.ts", + "./testTs/test/testts/es2017/useObjectValuesAndEntries1.ts", + "./testTs/test/testts/async/es2017/asyncMethodWithSuper_es2017.ts", + "./testTs/test/testts/async/es2017/awaitInheritedPromise_es2017.ts", + "./testTs/test/testts/async/es2017/await_unaryExpression_es2017.ts", + "./testTs/test/testts/async/es2017/awaitClassExpression_es2017.ts", + "./testTs/test/testts/async/es2017/asyncUseStrict_es2017.ts", + "./testTs/test/testts/async/es2017/asyncMethodWithSuperConflict_es6.ts", + "./testTs/test/testts/async/es2017/asyncAwait_es2017.ts", + "./testTs/test/testts/async/es2017/awaitCallExpression/awaitCallExpression5_es2017.ts", + "./testTs/test/testts/async/es2017/awaitCallExpression/awaitCallExpression6_es2017.ts", + "./testTs/test/testts/async/es2017/awaitCallExpression/awaitCallExpression2_es2017.ts", + "./testTs/test/testts/async/es2017/awaitCallExpression/awaitCallExpression1_es2017.ts", + "./testTs/test/testts/async/es2017/awaitCallExpression/awaitCallExpression3_es2017.ts", + "./testTs/test/testts/async/es2017/awaitCallExpression/awaitCallExpression8_es2017.ts", + "./testTs/test/testts/async/es2017/awaitCallExpression/awaitCallExpression4_es2017.ts", + "./testTs/test/testts/async/es2017/awaitCallExpression/awaitCallExpression7_es2017.ts", + "./testTs/test/testts/async/es2017/awaitBinaryExpression/awaitBinaryExpression1_es2017.ts", + "./testTs/test/testts/async/es2017/awaitBinaryExpression/awaitBinaryExpression3_es2017.ts", + "./testTs/test/testts/async/es2017/awaitBinaryExpression/awaitBinaryExpression4_es2017.ts", + "./testTs/test/testts/async/es2017/awaitBinaryExpression/awaitBinaryExpression2_es2017.ts", + "./testTs/test/testts/async/es2017/awaitBinaryExpression/awaitBinaryExpression5_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration4_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration2_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration14_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration1_es2017.ts", + "./testTs/test/testts/async/es2017/functionDeclarations/asyncFunctionDeclaration11_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunction4_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/arrowFunctionWithParameterNameAsync_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunction1_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunctionCapturesThis_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunction2_es2017.ts", + "./testTs/test/testts/async/es2017/asyncArrowFunction/asyncArrowFunctionCapturesArguments_es2017.ts", + "./testTs/test/testts/async/es5/asyncMethodWithSuper_es5.ts", + "./testTs/test/testts/async/es5/awaitUnion_es5.ts", + "./testTs/test/testts/async/es5/asyncQualifiedReturnType_es5.ts", + "./testTs/test/testts/async/es5/awaitClassExpression_es5.ts", + "./testTs/test/testts/async/es5/asyncUseStrict_es5.ts", + "./testTs/test/testts/async/es5/asyncImportedPromise_es5.ts", + "./testTs/test/testts/async/es5/asyncAwait_es5.ts", + "./testTs/test/testts/async/es5/asyncMultiFile_es5.ts", + "./testTs/test/testts/async/es5/asyncAwaitNestedClasses_es5.ts", + "./testTs/test/testts/async/es5/awaitCallExpression/awaitCallExpression1_es5.ts", + "./testTs/test/testts/async/es5/awaitCallExpression/awaitCallExpression2_es5.ts", + "./testTs/test/testts/async/es5/awaitCallExpression/awaitCallExpression5_es5.ts", + "./testTs/test/testts/async/es5/awaitCallExpression/awaitCallExpression6_es5.ts", + "./testTs/test/testts/async/es5/awaitCallExpression/awaitCallExpression7_es5.ts", + "./testTs/test/testts/async/es5/awaitCallExpression/awaitCallExpression3_es5.ts", + "./testTs/test/testts/async/es5/awaitCallExpression/awaitCallExpression4_es5.ts", + "./testTs/test/testts/async/es5/awaitCallExpression/awaitCallExpression8_es5.ts", + "./testTs/test/testts/async/es5/awaitBinaryExpression/awaitBinaryExpression4_es5.ts", + "./testTs/test/testts/async/es5/awaitBinaryExpression/awaitBinaryExpression3_es5.ts", + "./testTs/test/testts/async/es5/awaitBinaryExpression/awaitBinaryExpression5_es5.ts", + "./testTs/test/testts/async/es5/awaitBinaryExpression/awaitBinaryExpression1_es5.ts", + "./testTs/test/testts/async/es5/awaitBinaryExpression/awaitBinaryExpression2_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration2_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration14_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration4_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration1_es5.ts", + "./testTs/test/testts/async/es5/functionDeclarations/asyncFunctionDeclaration11_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunction2_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunction4_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunctionCapturesThis_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunction11_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/arrowFunctionWithParameterNameAsync_es5.ts", + "./testTs/test/testts/async/es5/asyncArrowFunction/asyncArrowFunction1_es5.ts", + "./testTs/test/testts/async/es6/asyncMultiFile_es6.ts", + "./testTs/test/testts/async/es6/asyncUseStrict_es6.ts", + "./testTs/test/testts/async/es6/asyncAliasReturnType_es6.ts", + "./testTs/test/testts/async/es6/asyncMethodWithSuper_es6.ts", + "./testTs/test/testts/async/es6/awaitUnion_es6.ts", + "./testTs/test/testts/async/es6/await_unaryExpression_es6.ts", + "./testTs/test/testts/async/es6/asyncAwait_es6.ts", + "./testTs/test/testts/async/es6/awaitClassExpression_es6.ts", + "./testTs/test/testts/async/es6/awaitCallExpression/awaitCallExpression5_es6.ts", + "./testTs/test/testts/async/es6/awaitCallExpression/awaitCallExpression6_es6.ts", + "./testTs/test/testts/async/es6/awaitCallExpression/awaitCallExpression3_es6.ts", + "./testTs/test/testts/async/es6/awaitCallExpression/awaitCallExpression2_es6.ts", + "./testTs/test/testts/async/es6/awaitCallExpression/awaitCallExpression1_es6.ts", + "./testTs/test/testts/async/es6/awaitCallExpression/awaitCallExpression7_es6.ts", + "./testTs/test/testts/async/es6/awaitCallExpression/awaitCallExpression8_es6.ts", + "./testTs/test/testts/async/es6/awaitCallExpression/awaitCallExpression4_es6.ts", + "./testTs/test/testts/async/es6/awaitBinaryExpression/awaitBinaryExpression5_es6.ts", + "./testTs/test/testts/async/es6/awaitBinaryExpression/awaitBinaryExpression1_es6.ts", + "./testTs/test/testts/async/es6/awaitBinaryExpression/awaitBinaryExpression4_es6.ts", + "./testTs/test/testts/async/es6/awaitBinaryExpression/awaitBinaryExpression3_es6.ts", + "./testTs/test/testts/async/es6/awaitBinaryExpression/awaitBinaryExpression2_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration11_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration1_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration2_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration14_es6.ts", + "./testTs/test/testts/async/es6/functionDeclarations/asyncFunctionDeclaration4_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncUnParenthesizedArrowFunction_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunction2_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunctionCapturesThis_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunction4_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunctionCapturesArguments_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/asyncArrowFunction1_es6.ts", + "./testTs/test/testts/async/es6/asyncArrowFunction/arrowFunctionWithParameterNameAsync_es6.ts", + "./testTs/test/testts/typings/typingsLookupAmd.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES6System.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInAMD2.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInCJS2.ts", + "./testTs/test/testts/dynamicImport/importCallExpression2ES2020.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionES6CJS.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInSystem1.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES3UMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInExportEqualsAMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInSystem2.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES3CJS.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES2020.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedSystem2.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInAMD4.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionES5CJS.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionDeclarationEmit2.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInAMD1.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES6UMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInCJS3.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedCJS2.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInUMD3.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedES20202.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedUMD2.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionES6System.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInSystem4.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInUMD4.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionReturnPromiseOfAny.ts", + "./testTs/test/testts/dynamicImport/importCallExpression1ES2020.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionES6AMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionES5UMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionShouldNotGetParen.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedES2020.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES3AMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedAMD2.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES3System.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInCJS5.ts", + "./testTs/test/testts/dynamicImport/importCallExpression4ES2020.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES5CJS.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedAMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInExportEqualsUMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInExportEqualsCJS.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInCJS1.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedCJS.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES5AMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInSystem3.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES6CJS.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInUMD2.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES6AMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES5System.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedSystem.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInUMD1.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionES5System.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInAMD3.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionDeclarationEmit3.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionNestedUMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInCJS4.ts", + "./testTs/test/testts/dynamicImport/importCallExpression3ES2020.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionDeclarationEmit1.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInScriptContext1.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionAsyncES5UMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionES6UMD.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionES5AMD.ts", + "./testTs/test/testts/jsdoc/thisTag2.ts", + "./testTs/test/testts/jsdoc/jsdocAccessibilityTagsDeclarations.ts", + "./testTs/test/testts/jsdoc/extendsTag3.ts", + "./testTs/test/testts/jsdoc/jsdocVariableDeclarationWithTypeAnnotation.ts", + "./testTs/test/testts/jsdoc/jsdocReadonlyDeclarations.ts", + "./testTs/test/testts/jsdoc/jsdocSignatureOnReturnedFunction.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignedClassExpressionAnonymous.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignedClassInstance3.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsClassLeadingOptional.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportSubAssignments.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsMissingGenerics.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsReusesExistingTypeAnnotations.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsReexportAliases.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsModuleReferenceHasEmit.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsMultipleExportFromMerge.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsOptionalTypeLiteralProps2.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsClassMethod.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsClassAccessor.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsJSDocRedirectedLookups.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsGetterSetter.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsFunctionKeywordPropExhaustive.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsFunctionLikeClasses.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsClassStaticMethodAugmentation.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsImportAliasExposedWithinNamespace.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsFunctionPrototypeStatic.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportSpecifierNonlocal.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignedClassExpression.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportForms.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignedClassInstance2.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignedClassExpressionShadowing.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsImportTypeBundled.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsClassStatic.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignmentExpressionPlusSecondary.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsReexportedCjsAlias.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsConstsAsNamespacesWithReferences.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsMissingTypeParameters.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsRestArgsWithThisTypeInJSDocFunction.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsClassImplementsGenericsSerialization.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsFunctionClassesCjsExportAssignment.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsFunctionKeywordProp.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsReferenceToClassInstanceCrossFile.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsCommonjsRelativePath.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsTypeReferences3.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsReexportAliasesEsModuleInterop.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsNestedParams.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsTypeReferences.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsNonIdentifierInferredNames.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsPrivateFields01.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsTypeReferences2.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsImportAliasExposedWithinNamespaceCjs.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignedClassExpressionAnonymousWithSub.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsClasses.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsDefault.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsEnumTag.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsClassExtendsVisibility.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsDocCommentsOnConsts.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsComputedNames.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsOptionalTypeLiteralProps1.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsJson.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsReactComponents.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignmentWithKeywordName.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignedVisibility.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignedClassInstance1.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsPackageJson.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsParameterTagReusesInputNodeInEmit2.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsFunctionJSDoc.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportAssignedConstructorFunction.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsFunctionLikeClasses2.ts", + "./testTs/test/testts/override/override14.ts", + "./testTs/test/testts/es2019/importMeta/importMeta.ts", + "./testTs/test/testts/es2019/importMeta/importMetaNarrowing.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInClassAccessors.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInProperties.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsObjectMethods.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInExternalModule.ts", + "./testTs/test/testts/expressions/thisKeyword/typeOfThis.ts", + "./testTs/test/testts/expressions/asOperator/asOperator4.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator_es2020.ts", + "./testTs/test/testts/expressions/arrayLiterals/arrayLiterals2ES6.ts", + "./testTs/test/testts/expressions/optionalChaining/optionalChainingInLoop.ts", + "./testTs/test/testts/expressions/optionalChaining/optionalChainingInArrow.ts", + "./testTs/test/testts/expressions/optionalChaining/callChain/thisMethodCall.ts", + "./testTs/test/testts/expressions/optionalChaining/callChain/superMethodCall.ts", + "./testTs/test/testts/expressions/optionalChaining/callChain/callChainWithSuper.ts", + "./testTs/test/testts/expressions/functionCalls/newWithSpreadES6.ts", + "./testTs/test/testts/expressions/functionCalls/newWithSpreadES5.ts", + "./testTs/test/testts/expressions/functionCalls/callWithSpreadES6.ts", + "./testTs/test/testts/expressions/superPropertyAccess/superSymbolIndexedAccess6.ts", + "./testTs/test/testts/expressions/superPropertyAccess/superSymbolIndexedAccess1.ts", + "./testTs/test/testts/expressions/superPropertyAccess/superSymbolIndexedAccess5.ts", + "./testTs/test/testts/expressions/superPropertyAccess/superPropertyAccessNoError.ts", + "./testTs/test/testts/expressions/superPropertyAccess/superSymbolIndexedAccess2.ts", + "./testTs/test/testts/expressions/propertyAccess/propertyAccessNumericLiterals.ts", + "./testTs/test/testts/expressions/typeAssertions/constAssertionOnEnum.ts", + "./testTs/test/testts/expressions/contextualTyping/iterableContextualTyping1.ts", + "./testTs/test/testts/expressions/contextualTyping/taggedTemplateContextualTyping1.ts", + "./testTs/test/testts/expressions/contextualTyping/taggedTemplateContextualTyping2.ts", + "./testTs/test/testts/expressions/contextualTyping/parenthesizedContexualTyping3.ts", + "./testTs/test/testts/emitter/es2018/asyncGenerators/emitter.asyncGenerators.classMethods.es2018.ts", + "./testTs/test/testts/emitter/es2018/asyncGenerators/emitter.asyncGenerators.functionExpressions.es2018.ts", + "./testTs/test/testts/emitter/es2018/asyncGenerators/emitter.asyncGenerators.objectLiteralMethods.es2018.ts", + "./testTs/test/testts/emitter/es2018/asyncGenerators/emitter.asyncGenerators.functionDeclarations.es2018.ts", + "./testTs/test/testts/emitter/es2019/noCatchBinding/emitter.noCatchBinding.es2019.ts", + "./testTs/test/testts/emitter/es5/asyncGenerators/emitter.asyncGenerators.objectLiteralMethods.es5.ts", + "./testTs/test/testts/emitter/es5/asyncGenerators/emitter.asyncGenerators.functionDeclarations.es5.ts", + "./testTs/test/testts/emitter/es5/asyncGenerators/emitter.asyncGenerators.functionExpressions.es5.ts", + "./testTs/test/testts/emitter/es5/asyncGenerators/emitter.asyncGenerators.classMethods.es5.ts", + "./testTs/test/testts/declarationEmit/libReferenceDeclarationEmit.ts", + "./testTs/test/testts/declarationEmit/typesVersionsDeclarationEmit.multiFileBackReferenceToUnmapped.ts", + "./testTs/test/testts/declarationEmit/libReferenceNoLibBundle.ts", + "./testTs/test/testts/declarationEmit/typesVersionsDeclarationEmit.multiFile.ts", + "./testTs/test/testts/declarationEmit/typesVersionsDeclarationEmit.ambient.ts", + "./testTs/test/testts/declarationEmit/libReferenceDeclarationEmitBundle.ts", + "./testTs/test/testts/declarationEmit/libReferenceNoLib.ts", + "./testTs/test/testts/declarationEmit/typePredicates/declarationEmitIdentifierPredicates01.ts", + "./testTs/test/testts/declarationEmit/typePredicates/declarationEmitThisPredicates01.ts", + "./testTs/test/testts/declarationEmit/typePredicates/declarationEmitIdentifierPredicatesWithPrivateName01.ts", + "./testTs/test/testts/declarationEmit/typePredicates/declarationEmitThisPredicatesWithPrivateName01.ts", + "./testTs/test/testts/decorators/decoratorMetadataWithTypeOnlyImport.ts", + "./testTs/test/testts/decorators/1.0lib-noErrors.ts", + "./testTs/test/testts/decorators/decoratorMetadata.ts", + "./testTs/test/testts/decorators/class/decoratorOnClass2.ts", + "./testTs/test/testts/decorators/class/decoratedClassExportsCommonJS2.ts", + "./testTs/test/testts/decorators/class/decoratorInstantiateModulesInFunctionBodies.ts", + "./testTs/test/testts/decorators/class/decoratorOnClass1.ts", + "./testTs/test/testts/decorators/class/decoratorOnClass4.ts", + "./testTs/test/testts/decorators/class/decoratedClassExportsCommonJS1.ts", + "./testTs/test/testts/decorators/class/decoratedBlockScopedClass3.ts", + "./testTs/test/testts/decorators/class/decoratedClassFromExternalModule.ts", + "./testTs/test/testts/decorators/class/decoratedBlockScopedClass1.ts", + "./testTs/test/testts/decorators/class/decoratedBlockScopedClass2.ts", + "./testTs/test/testts/decorators/class/decoratorOnClass9.ts", + "./testTs/test/testts/decorators/class/decoratedClassExportsSystem2.ts", + "./testTs/test/testts/decorators/class/decoratedClassExportsSystem1.ts", + "./testTs/test/testts/decorators/class/decoratorOnClass5.ts", + "./testTs/test/testts/decorators/class/constructor/decoratorOnClassConstructor4.ts", + "./testTs/test/testts/decorators/class/constructor/decoratorOnClassConstructor3.ts", + "./testTs/test/testts/decorators/class/constructor/parameter/decoratorOnClassConstructorParameter1.ts", + "./testTs/test/testts/decorators/class/constructor/parameter/decoratorOnClassConstructorParameter5.ts", + "./testTs/test/testts/decorators/class/accessor/decoratorOnClassAccessor4.ts", + "./testTs/test/testts/decorators/class/accessor/decoratorOnClassAccessor5.ts", + "./testTs/test/testts/decorators/class/accessor/decoratorOnClassAccessor1.ts", + "./testTs/test/testts/decorators/class/accessor/decoratorOnClassAccessor8.ts", + "./testTs/test/testts/decorators/class/accessor/decoratorOnClassAccessor2.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod14.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod15.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod5.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod2.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethodOverload2.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod16.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod18.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod13.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod7.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod1.ts", + "./testTs/test/testts/decorators/class/method/decoratorOnClassMethod4.ts", + "./testTs/test/testts/decorators/class/method/parameter/decoratorOnClassMethodParameter1.ts", + "./testTs/test/testts/decorators/class/method/parameter/decoratorOnClassMethodParameter2.ts", + "./testTs/test/testts/decorators/class/property/decoratorOnClassProperty2.ts", + "./testTs/test/testts/decorators/class/property/decoratorOnClassProperty10.ts", + "./testTs/test/testts/decorators/class/property/decoratorOnClassProperty1.ts", + "./testTs/test/testts/moduleResolution/typesVersions.emptyTypes.ts", + "./testTs/test/testts/moduleResolution/scopedPackagesClassic.ts", + "./testTs/test/testts/moduleResolution/typesVersions.ambientModules.ts", + "./testTs/test/testts/moduleResolution/typesVersions.multiFile.ts", + "./testTs/test/testts/moduleResolution/typesVersions.justIndex.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserAccessors4.ts", + "./testTs/test/testts/parser/ecmascript5/Accessors/parserAccessors2.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration4.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration5.ts", + "./testTs/test/testts/parser/ecmascript5/MemberAccessorDeclarations/parserMemberAccessorDeclaration6.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolIndexer3.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolIndexer1.ts", + "./testTs/test/testts/parser/ecmascript5/Symbols/parserES5SymbolIndexer2.ts", + "./testTs/test/testts/parser/ecmascript5/ArrowFunctionExpressions/parserArrowFunctionExpression7.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement17.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement19.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserES5ForOfStatement18.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement24.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement18.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement19.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement17.ts", + "./testTs/test/testts/parser/ecmascript6/Iterators/parserForOfStatement23.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolProperty9.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolIndexer2.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolProperty1.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolProperty8.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolProperty3.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolIndexer3.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolProperty6.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolProperty4.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolIndexer1.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolProperty7.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolProperty2.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolProperty5.ts", + "./testTs/test/testts/parser/ecmascript6/Symbols/parserSymbolIndexer4.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignmentOutOfOrder.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment9_1.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment12.ts", + "./testTs/test/testts/salsa/typeFromParamTagForFunction.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment10_1.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment8.ts", + "./testTs/test/testts/salsa/lateBoundClassMemberAssignmentJS.ts", + "./testTs/test/testts/salsa/constructorFunctions2.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment13.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment8_1.ts", + "./testTs/test/testts/salsa/lateBoundAssignmentDeclarationSupport7.ts", + "./testTs/test/testts/salsa/moduleExportAliasImported.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment9.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment6.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment7.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment10.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment5.ts", + "./testTs/test/testts/salsa/assignmentToVoidZero1.ts", + "./testTs/test/testts/salsa/lateBoundClassMemberAssignmentJS2.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment11.ts", + "./testTs/test/testts/salsa/lateBoundClassMemberAssignmentJS3.ts", + "./testTs/test/testts/Symbols/ES5SymbolProperty1.ts", + "./testTs/test/testts/Symbols/ES5SymbolType1.ts", + "./testTs/test/testts/Symbols/ES5SymbolProperty3.ts", + "./testTs/test/testts/Symbols/ES5SymbolProperty7.ts", + "./testTs/test/testts/Symbols/ES5SymbolProperty5.ts", + "./testTs/test/testts/Symbols/ES5SymbolProperty4.ts", + "./testTs/test/testts/es6/moduleExportsAmd/decoratedDefaultExportsGetExportedAmd.ts", + "./testTs/test/testts/es6/moduleExportsAmd/outFilerootDirModuleNamesAmd.ts", + "./testTs/test/testts/es6/moduleExportsAmd/anonymousDefaultExportsAmd.ts", + "./testTs/test/testts/es6/moduleExportsAmd/defaultExportsGetExportedAmd.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignmentES6.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesES6.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesWithModuleES6.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandProperties.ts", + "./testTs/test/testts/es6/newTarget/newTarget.es5.ts", + "./testTs/test/testts/es6/newTarget/newTargetNarrowing.ts", + "./testTs/test/testts/es6/newTarget/newTarget.es6.ts", + "./testTs/test/testts/es6/memberFunctionDeclarations/MemberFunctionDeclaration7_es6.ts", + "./testTs/test/testts/es6/memberFunctionDeclarations/MemberFunctionDeclaration1_es6.ts", + "./testTs/test/testts/es6/memberFunctionDeclarations/MemberFunctionDeclaration2_es6.ts", + "./testTs/test/testts/es6/functionPropertyAssignments/FunctionPropertyAssignments1_es6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments08.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments09_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments11_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments05_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments14_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments07_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionAsIsES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments16_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunction.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments13_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments18_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments17_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments19_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionsAsIsES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments08_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments03_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionAsIs.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments10_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments06_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments04_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments15_ES6.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionWhenUsingArguments13.ts", + "./testTs/test/testts/es6/arrowFunction/emitArrowFunctionsAsIs.ts", + "./testTs/test/testts/es6/binaryAndOctalIntegerLiteral/binaryIntegerLiteralES6.ts", + "./testTs/test/testts/es6/binaryAndOctalIntegerLiteral/binaryIntegerLiteral.ts", + "./testTs/test/testts/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteral.ts", + "./testTs/test/testts/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteralES6.ts", + "./testTs/test/testts/es6/classExpressions/classExpressionES63.ts", + "./testTs/test/testts/es6/classExpressions/classExpressionES62.ts", + "./testTs/test/testts/es6/classExpressions/classExpressionES61.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames25_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames4_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames41_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType1_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames29_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames7_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames46_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType7_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames41_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames33_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesSourceMap2_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames16_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames33_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames29_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType7_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames25_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames11_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames46_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit5_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType3_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames18_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames22_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType4_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames28_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames47_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames7_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames48_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames1_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType5_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames31_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames16_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType6_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit2_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames47_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit5_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType5_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames48_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit2_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames1_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit1_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesDeclarationEmit1_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames20_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesSourceMap2_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames18_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames22_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType2_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames31_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames37_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames10_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames11_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType6_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames28_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesSourceMap1_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames13_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames10_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames4_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames20_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType3_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames37_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType4_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesSourceMap1_ES6.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames13_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType2_ES5.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNamesContextualType1_ES5.ts", + "./testTs/test/testts/es6/defaultParameters/emitDefaultParametersFunctionES6.ts", + "./testTs/test/testts/es6/defaultParameters/emitDefaultParametersMethod.ts", + "./testTs/test/testts/es6/defaultParameters/emitDefaultParametersFunctionProperty.ts", + "./testTs/test/testts/es6/defaultParameters/emitDefaultParametersFunction.ts", + "./testTs/test/testts/es6/defaultParameters/emitDefaultParametersMethodES6.ts", + "./testTs/test/testts/es6/defaultParameters/emitDefaultParametersFunctionPropertyES6.ts", + "./testTs/test/testts/es6/defaultParameters/emitDefaultParametersFunctionExpression.ts", + "./testTs/test/testts/es6/defaultParameters/emitDefaultParametersFunctionExpressionES6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration8_es6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration7_es6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration10_es6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration9_es6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration12_es6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration3_es6.ts", + "./testTs/test/testts/es6/variableDeclarations/VariableDeclaration5_es6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithTypedTagsES6.ts", + "./testTs/test/testts/es6/templates/templateStringInPropertyAssignmentES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedTemplateStringES6.ts", + "./testTs/test/testts/es6/templates/templateStringInTypeAssertionES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedArrowFunctionES6.ts", + "./testTs/test/testts/es6/templates/templateStringWhitespaceEscapes2_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmptyLiteralPortionsES6.ts", + "./testTs/test/testts/es6/templates/templateStringControlCharacterEscapes03_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedFunctionExpressionES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithBackslashEscapes01_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedTypeAssertionOnAdditionES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithOpenCommentInStringPortionES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedInOperatorES6.ts", + "./testTs/test/testts/es6/templates/templateStringInArrowFunctionES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithPropertyAccessES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedAdditionES6.ts", + "./testTs/test/testts/es6/templates/templateStringControlCharacterEscapes01_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringInInOperatorES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedConditionalES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedObjectLiteralES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedNewOperatorES6.ts", + "./testTs/test/testts/es6/templates/templateStringTermination2_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes01_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedModuloES6.ts", + "./testTs/test/testts/es6/templates/templateStringInTypeOfES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithTagNamedDeclareES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsPlainCharactersThatArePartsOfEscapes01_ES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithManyCallAndMemberExpressionsES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedDivisionES6.ts", + "./testTs/test/testts/es6/templates/templateStringTermination5_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringInSwitchAndCaseES6.ts", + "./testTs/test/testts/es6/templates/templateStringInWhileES6.ts", + "./testTs/test/testts/es6/templates/templateStringBinaryOperationsES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplatesWithTypeArguments1.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedTypeOfOperatorES6.ts", + "./testTs/test/testts/es6/templates/templateStringInYieldKeyword.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedCommentsES6.ts", + "./testTs/test/testts/es6/templates/templateStringTermination3_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedYieldKeywordES6.ts", + "./testTs/test/testts/es6/templates/templateStringInParenthesesES6.ts", + "./testTs/test/testts/es6/templates/templateStringMultiline1_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringInIndexExpressionES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithTagsTypedAsAnyES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedMultiplicationES6.ts", + "./testTs/test/testts/es6/templates/templateStringWhitespaceEscapes1_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedArrayES6.ts", + "./testTs/test/testts/es6/templates/templateStringControlCharacterEscapes02_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringMultiline2_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringInConditionalES6.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithOverloadResolution2_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringInFunctionExpressionES6.ts", + "./testTs/test/testts/es6/templates/templateStringInEqualityChecksES6.ts", + "./testTs/test/testts/es6/templates/templateStringControlCharacterEscapes04_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringMultiline3_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringTermination4_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes02_ES6.ts", + "./testTs/test/testts/es6/templates/templateStringInUnaryPlusES6.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedUnaryPlusES6.ts", + "./testTs/test/testts/es6/templates/templateStringTermination1_ES6.ts", + "./testTs/test/testts/es6/moduleExportsCommonjs/decoratedDefaultExportsGetExportedCommonjs.ts", + "./testTs/test/testts/es6/moduleExportsCommonjs/defaultExportsGetExportedCommonjs.ts", + "./testTs/test/testts/es6/moduleExportsCommonjs/anonymousDefaultExportsCommonjs.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration4_es6.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration9_es6.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration2_es6.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration1_es6.ts", + "./testTs/test/testts/es6/functionDeclarations/FunctionDeclaration11_es6.ts", + "./testTs/test/testts/es6/moduleExportsSystem/outFilerootDirModuleNamesSystem.ts", + "./testTs/test/testts/es6/moduleExportsSystem/decoratedDefaultExportsGetExportedSystem.ts", + "./testTs/test/testts/es6/moduleExportsSystem/anonymousDefaultExportsSystem.ts", + "./testTs/test/testts/es6/moduleExportsSystem/defaultExportsGetExportedSystem.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithExtensionInES6.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithPropertyAssignmentInES6.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithExtensionAndTypeArgumentInES6.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithThisKeywordInES6.ts", + "./testTs/test/testts/es6/classDeclaration/exportDefaultClassWithStaticPropertyAssignmentsInES6.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithStaticPropertyAssignmentInES6.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithTypeArgumentAndOverloadInES6.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithSuperMethodCall01.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithMethodInES6.ts", + "./testTs/test/testts/es6/classDeclaration/classWithSemicolonClassElementES61.ts", + "./testTs/test/testts/es6/classDeclaration/classWithSemicolonClassElementES62.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithGetterSetterInES6.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationOverloadInES6.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithConstructorInES6.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithLiteralPropertyNameInES6.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithTypeArgumentInES6.ts", + "./testTs/test/testts/es6/restParameters/emitRestParametersFunctionES6.ts", + "./testTs/test/testts/es6/restParameters/emitRestParametersFunctionExpression.ts", + "./testTs/test/testts/es6/restParameters/emitRestParametersFunctionExpressionES6.ts", + "./testTs/test/testts/es6/restParameters/emitRestParametersFunction.ts", + "./testTs/test/testts/es6/restParameters/emitRestParametersFunctionPropertyES6.ts", + "./testTs/test/testts/es6/restParameters/emitRestParametersMethod.ts", + "./testTs/test/testts/es6/restParameters/emitRestParametersFunctionProperty.ts", + "./testTs/test/testts/es6/restParameters/emitRestParametersMethodES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions01_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings06_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions07_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions12_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings13_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions05_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates18_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings15_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings13_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions17_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings18_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions02_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions19_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions09_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates03_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions01_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions07_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates15_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates20_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions15_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings18_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates10_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings05_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions03_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates15_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions06_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions02_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings06_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates10_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions14_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions05_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions18_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions11_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates11_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates02_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings10_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates08_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates01_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings05_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions16_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings01_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions04_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings23_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions04_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings08_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates18_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates09_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings02_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates11_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions03_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates16_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions10_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions19_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates03_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings16_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions08_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates13_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions15_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings09_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings04_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates04_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings01_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions16_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates08_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings03_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates05_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions17_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings11_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates01_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions10_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings09_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates16_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions06_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates09_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates06_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings11_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates04_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates02_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions12_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings02_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions14_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions08_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates20_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings23_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions13_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates05_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates06_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings04_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings16_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions18_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions13_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings08_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings10_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings15_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions09_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInRegularExpressions11_ES5.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInTemplates13_ES6.ts", + "./testTs/test/testts/es6/unicodeExtendedEscapes/unicodeExtendedEscapesInStrings03_ES6.ts", + "./testTs/test/testts/es6/decorators/class/decoratorOnClass5.es6.ts", + "./testTs/test/testts/es6/decorators/class/decoratorOnClass8.es6.ts", + "./testTs/test/testts/es6/decorators/class/decoratorOnClass7.es6.ts", + "./testTs/test/testts/es6/decorators/class/decoratorOnClass4.es6.ts", + "./testTs/test/testts/es6/decorators/class/decoratorOnClass3.es6.ts", + "./testTs/test/testts/es6/decorators/class/decoratorOnClass6.es6.ts", + "./testTs/test/testts/es6/decorators/class/decoratorOnClass1.es6.ts", + "./testTs/test/testts/es6/decorators/class/decoratorOnClass2.es6.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of8.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of18.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of9.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of25.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of58.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of27.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of53.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of5.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of24.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of38.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of45.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of44.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of36.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of19.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of42.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of28.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of23.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of41.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of40.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of4.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of26.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of22.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of20.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of21.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of56.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of1.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of31.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of57.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of43.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of50.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of37.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of49.ts", + "./testTs/test/testts/es6/for-ofStatements/for-of13.ts", + "./testTs/test/testts/es6/propertyAccess/propertyAccessNumericLiterals.es6.ts", + "./testTs/test/testts/es6/functionExpressions/FunctionExpression2_es6.ts", + "./testTs/test/testts/es6/functionExpressions/FunctionExpression1_es6.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit8.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit5.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty40.ts", + "./testTs/test/testts/es6/Symbols/symbolType11.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty20.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty58.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty48.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty11.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty23.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty14.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty4.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty50.ts", + "./testTs/test/testts/es6/Symbols/symbolType18.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty49.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty26.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit1.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty8.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty28.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty38.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty15.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty31.ts", + "./testTs/test/testts/es6/Symbols/symbolType17.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty57.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty18.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty27.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty2.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit13.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty22.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty6.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty29.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty13.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit2.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit3.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty41.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty37.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit10.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty45.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit4.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit6.ts", + "./testTs/test/testts/es6/Symbols/symbolType16.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty56.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty16.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit9.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit11.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty5.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty55.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty19.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit14.ts", + "./testTs/test/testts/es6/Symbols/symbolDeclarationEmit7.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty51.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty36.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty1.ts", + "./testTs/test/testts/es6/Symbols/symbolType19.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall11.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInArray2.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall5.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInArray4.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInArray.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall3.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInArray11.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInArray7.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInArray3.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInArray9.ts", + "./testTs/test/testts/es6/spread/iteratorSpreadInCall12.ts", + "./testTs/test/testts/es6/destructuring/emptyVariableDeclarationBindingPatterns01_ES5iterable.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern11.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern4.ts", + "./testTs/test/testts/es6/destructuring/emptyVariableDeclarationBindingPatterns01_ES6.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern15.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns04_ES5iterable.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns01_ES5iterable.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns01_ES5.ts", + "./testTs/test/testts/es6/destructuring/destructuringObjectBindingPatternAndAssignment8.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern9.ts", + "./testTs/test/testts/es6/destructuring/destructuringObjectBindingPatternAndAssignment1ES6.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns02_ES6.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern2.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern30.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern1.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration7ES5.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns03_ES6.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern20.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns01_ES6.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern12.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns02_ES5iterable.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern3.ts", + "./testTs/test/testts/es6/destructuring/destructuringTypeAssertionsES5_5.ts", + "./testTs/test/testts/es6/destructuring/destructuringVariableDeclaration1ES6.ts", + "./testTs/test/testts/es6/destructuring/destructuringReassignsRightHandSide.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern14.ts", + "./testTs/test/testts/es6/destructuring/iterableArrayPattern27.ts", + "./testTs/test/testts/es6/destructuring/destructuringObjectBindingPatternAndAssignment7.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns04_ES6.ts", + "./testTs/test/testts/es6/destructuring/emptyVariableDeclarationBindingPatterns01_ES5.ts", + "./testTs/test/testts/es6/destructuring/restElementWithAssignmentPattern1.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns04_ES5.ts", + "./testTs/test/testts/es6/destructuring/nonIterableRestElement2.ts", + "./testTs/test/testts/es6/destructuring/destructuringParameterDeclaration7ES5iterable.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns03_ES5iterable.ts", + "./testTs/test/testts/es6/destructuring/destructuringObjectBindingPatternAndAssignment6.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns03_ES5.ts", + "./testTs/test/testts/es6/destructuring/emptyAssignmentPatterns02_ES5.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck30.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck33.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck40.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck1.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck24.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression7_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck13.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck44.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck28.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck41.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorInAmbientContext5.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck27.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldStarExpression4_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression4_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck62.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorOverloads5.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck29.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck49.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck43.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck54.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck4.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorNoImplicitReturns.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression13_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck37.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck16.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck3.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorOverloads4.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck36.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck17.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck53.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck56.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck52.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck10.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck45.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck55.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck38.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck46.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck5.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck35.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck19.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck11.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck15.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck51.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck12.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck47.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck23.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck14.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck34.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck42.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck26.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression3_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck60.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck22.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorTypeCheck2.ts", + "./testTs/test/testts/es6/yieldExpressions/YieldExpression19_es6.ts", + "./testTs/test/testts/es6/yieldExpressions/generatorInAmbientContext6.ts", + "./testTs/test/testts/es6/modules/exportsAndImportsWithContextualKeywordNames02.ts", + "./testTs/test/testts/es6/modules/exportsAndImports3-es6.ts", + "./testTs/test/testts/es6/modules/exportsAndImports4-amd.ts", + "./testTs/test/testts/es6/modules/exportsAndImportsWithUnderscores4.ts", + "./testTs/test/testts/es6/modules/exportAndImport-es5-amd.ts", + "./testTs/test/testts/es6/modules/exportsAndImports1-es6.ts", + "./testTs/test/testts/es6/modules/exportsAndImportsWithUnderscores3.ts", + "./testTs/test/testts/es6/modules/exportsAndImports2.ts", + "./testTs/test/testts/es6/modules/exportsAndImports2-amd.ts", + "./testTs/test/testts/es6/modules/defaultExportWithOverloads01.ts", + "./testTs/test/testts/es6/modules/exportsAndImports4-es6.ts", + "./testTs/test/testts/es6/modules/exportsAndImports1.ts", + "./testTs/test/testts/es6/modules/exportsAndImportsWithUnderscores2.ts", + "./testTs/test/testts/es6/modules/exportsAndImports3.ts", + "./testTs/test/testts/es6/modules/exportAndImport-es3-amd.ts", + "./testTs/test/testts/es6/modules/exportsAndImports1-amd.ts", + "./testTs/test/testts/es6/modules/exportAndImport-es3.ts", + "./testTs/test/testts/es6/modules/exportAndImport-es5.ts", + "./testTs/test/testts/es6/modules/exportsAndImports4.ts", + "./testTs/test/testts/es6/modules/defaultExportInAwaitExpression01.ts", + "./testTs/test/testts/es6/modules/defaultExportInAwaitExpression02.ts", + "./testTs/test/testts/es6/modules/reExportDefaultExport.ts", + "./testTs/test/testts/es6/modules/exportsAndImports2-es6.ts", + "./testTs/test/testts/es6/modules/exportsAndImports3-amd.ts", + "./testTs/test/testts/es6/moduleExportsUmd/defaultExportsGetExportedUmd.ts", + "./testTs/test/testts/es6/moduleExportsUmd/decoratedDefaultExportsGetExportedUmd.ts", + "./testTs/test/testts/es6/moduleExportsUmd/anonymousDefaultExportsUmd.ts", + "./testTs/test/testts/es2020/bigintMissingES2019.ts", + "./testTs/test/testts/es2020/es2020IntlAPIs.ts", + "./testTs/test/testts/enums/enumExportMergingES6.ts", + "./testTs/test/testts/constEnums/constEnumPropertyAccess1.ts" ], "tsc_error":[ - "./testTs/test//fixSignatureCaching.ts", - "./testTs/test/ambient/ambientDeclarationsExternal.ts", - "./testTs/test/ambient/ambientDeclarationsPatterns.ts", - "./testTs/test/ambient/ambientShorthand.ts", - "./testTs/test/ambient/ambientShorthand_duplicate.ts", - "./testTs/test/ambient/ambientShorthand_merging.ts", - "./testTs/test/ambient/ambientShorthand_reExport.ts", - "./testTs/test/class/classStaticBlock/classStaticBlock11.ts", - "./testTs/test/classes/classExpressions/classWithStaticFieldInParameterBindingPattern.2.ts", - "./testTs/test/classes/classExpressions/classWithStaticFieldInParameterInitializer.2.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock9.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/superInStaticMembers1.ts", - "./testTs/test/controlFlow/controlFlowIfStatement.ts", - "./testTs/test/controlFlow/dependentDestructuredVariables.ts", - "./testTs/test/declarationEmit/typeReferenceRelatedFiles.ts", - "./testTs/test/decorators/decoratorMetadataWithTypeOnlyImport2.ts", - "./testTs/test/directives/ts-expect-error-nocheck-js.ts", - "./testTs/test/dynamicImport/importCallExpressionInUMD5.ts", - "./testTs/test/es2018/invalidTaggedTemplateEscapeSequences.ts", - "./testTs/test/es2020/modules/exportAsNamespace1.ts", - "./testTs/test/es2020/modules/exportAsNamespace2.ts", - "./testTs/test/es2020/modules/exportAsNamespace3.ts", - "./testTs/test/es2020/modules/exportAsNamespace4.ts", - "./testTs/test/es6/computedProperties/computedPropertyNames52.ts", - "./testTs/test/es6/decorators/class/accessor/decoratorOnClassAccessor1.es6.ts", - "./testTs/test/es6/decorators/class/method/decoratorOnClassMethod1.es6.ts", - "./testTs/test/es6/decorators/class/method/parameter/decoratorOnClassMethodParameter1.es6.ts", - "./testTs/test/es6/decorators/class/property/decoratorOnClassProperty1.es6.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignment.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesFunctionArgument.ts", - "./testTs/test/expressions/commaOperator/commaOperatorOtherValidOperation.ts", - "./testTs/test/expressions/commaOperator/commaOperatorsMultipleOperators.ts", - "./testTs/test/expressions/commaOperator/commaOperatorWithSecondOperandAnyType.ts", - "./testTs/test/expressions/commaOperator/commaOperatorWithSecondOperandBooleanType.ts", - "./testTs/test/expressions/commaOperator/commaOperatorWithSecondOperandNumberType.ts", - "./testTs/test/expressions/commaOperator/commaOperatorWithSecondOperandObjectType.ts", - "./testTs/test/expressions/commaOperator/commaOperatorWithSecondOperandStringType.ts", - "./testTs/test/expressions/conditonalOperator/conditionalOperatorWithIdenticalBCT.ts", - "./testTs/test/expressions/functionCalls/callWithMissingVoidUndefinedUnknownAnyInJs.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterBindingPattern.2.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterInitializer.2.ts", - "./testTs/test/expressions/optionalChaining/optionalChainingInParameterBindingPattern.2.ts", - "./testTs/test/expressions/optionalChaining/optionalChainingInParameterInitializer.2.ts", - "./testTs/test/expressions/typeGuards/nullOrUndefinedTypeGuardIsOrderIndependent.ts", - "./testTs/test/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithBooleanType.ts", - "./testTs/test/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithEnumType.ts", - "./testTs/test/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithNumberType.ts", - "./testTs/test/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithStringType.ts", - "./testTs/test/externalModules/asiPreventsParsingAsAmbientExternalModule01.ts", - "./testTs/test/externalModules/asiPreventsParsingAsAmbientExternalModule02.ts", - "./testTs/test/externalModules/commonJsImportBindingElementNarrowType.ts", - "./testTs/test/externalModules/exportAssignDottedName.ts", - "./testTs/test/externalModules/exportAssignImportedIdentifier.ts", - "./testTs/test/externalModules/exportAssignTypes.ts", - "./testTs/test/externalModules/exportDeclaredModule.ts", - "./testTs/test/externalModules/exportNonVisibleType.ts", - "./testTs/test/externalModules/moduleResolutionWithExtensions.ts", - "./testTs/test/externalModules/moduleScoping.ts", - "./testTs/test/externalModules/relativePathToDeclarationFile.ts", - "./testTs/test/externalModules/topLevelAwait.1.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target11.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target3.ts", - "./testTs/test/externalModules/typeOnly/ambient.ts", - "./testTs/test/externalModules/typeOnly/cjsImportInES2015.ts", - "./testTs/test/externalModules/typeOnly/exportDeclaration_moduleSpecifier-isolatedModules.ts", - "./testTs/test/externalModules/typeOnly/exportDeclaration_value.ts", - "./testTs/test/externalModules/typeOnly/implementsClause.ts", - "./testTs/test/externalModules/typeOnly/importDefaultNamedType.ts", - "./testTs/test/externalModules/typeOnly/nestedNamespace.ts", - "./testTs/test/externalModules/typeOnly/typeQuery.ts", - "./testTs/test/functions/parameterInitializersForwardReferencing.2.ts", - "./testTs/test/importAssertion/importAssertion1.ts", - "./testTs/test/importAssertion/importAssertion2.ts", - "./testTs/test/importAssertion/importAssertion3.ts", - "./testTs/test/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace02.ts", - "./testTs/test/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace04.ts", - "./testTs/test/jsdoc/callbackTagVariadicType.ts", - "./testTs/test/jsdoc/checkJsdocParamTag1.ts", - "./testTs/test/jsdoc/constructorTagOnNestedBinaryExpression.ts", - "./testTs/test/jsdoc/enumTagImported.ts", - "./testTs/test/jsdoc/exportedAliasedEnumTag.ts", - "./testTs/test/jsdoc/exportedEnumTypeAndValue.ts", - "./testTs/test/jsdoc/jsdocAugments_qualifiedName.ts", - "./testTs/test/jsdoc/jsdocAugments_withTypeParameter.ts", - "./testTs/test/jsdoc/jsdocImportType.ts", - "./testTs/test/jsdoc/jsdocImportType2.ts", - "./testTs/test/jsdoc/jsdocImportTypeReferenceToCommonjsModule.ts", - "./testTs/test/jsdoc/jsdocTemplateTag4.ts", - "./testTs/test/jsdoc/jsdocTemplateTag5.ts", - "./testTs/test/jsdoc/jsdocTypeReferenceToImport.ts", - "./testTs/test/jsdoc/jsdocTypeReferenceToImportOfClassExpression.ts", - "./testTs/test/jsdoc/jsdocTypeReferenceToImportOfFunctionExpression.ts", - "./testTs/test/jsdoc/jsdocTypeReferenceToMergedClass.ts", - "./testTs/test/jsdoc/jsdocTypeReferenceToValue.ts", - "./testTs/test/jsdoc/jsdocTypeTag.ts", - "./testTs/test/jsdoc/paramTagBracketsAddOptionalUndefined.ts", - "./testTs/test/jsdoc/returnTagTypeGuard.ts", - "./testTs/test/jsdoc/typedefCrossModule.ts", - "./testTs/test/jsdoc/typedefTagExtraneousProperty.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsImportNamespacedType.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsTypedefAndImportTypes.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsTypedefPropertyAndExportAssignment.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsTypeReassignmentFromDeclaration.ts", - "./testTs/test/jsx/tsxEmitSpreadAttribute.ts", - "./testTs/test/jsx/tsxReactEmitSpreadAttribute.ts", - "./testTs/test/moduleResolution/packageJsonMain.ts", - "./testTs/test/moduleResolution/scopedPackages.ts", - "./testTs/test/moduleResolution/untypedModuleImport.ts", - "./testTs/test/moduleResolution/untypedModuleImport_allowJs.ts", - "./testTs/test/moduleResolution/untypedModuleImport_vsAmbient.ts", - "./testTs/test/override/override10.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration17.ts", - "./testTs/test/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration5.ts", - "./testTs/test/parser/ecmascript5/Protected/Protected3.ts", - "./testTs/test/references/library-reference-10.ts", - "./testTs/test/references/library-reference-11.ts", - "./testTs/test/references/library-reference-12.ts", - "./testTs/test/references/library-reference-13.ts", - "./testTs/test/references/library-reference-2.ts", - "./testTs/test/references/library-reference-4.ts", - "./testTs/test/references/library-reference-8.ts", - "./testTs/test/salsa/annotatedThisPropertyInitializerDoesntNarrow.ts", - "./testTs/test/salsa/circularMultipleAssignmentDeclaration.ts", - "./testTs/test/salsa/commonJSAliasedExport.ts", - "./testTs/test/salsa/commonJSImportClassTypeReference.ts", - "./testTs/test/salsa/commonJSImportNestedClassTypeReference.ts", - "./testTs/test/salsa/commonJSReexport.ts", - "./testTs/test/salsa/constructorFunctionMergeWithClass.ts", - "./testTs/test/salsa/contextualTypedSpecialAssignment.ts", - "./testTs/test/salsa/defaultPropertyAssignedClassWithPrototype.ts", - "./testTs/test/salsa/exportNestedNamespaces.ts", - "./testTs/test/salsa/inferingFromAny.ts", - "./testTs/test/salsa/inferringClassMembersFromAssignments3.ts", - "./testTs/test/salsa/inferringClassMembersFromAssignments4.ts", - "./testTs/test/salsa/inferringClassMembersFromAssignments5.ts", - "./testTs/test/salsa/inferringClassMembersFromAssignments7.ts", - "./testTs/test/salsa/inferringClassStaticMembersFromAssignments.ts", - "./testTs/test/salsa/jsContainerMergeJsContainer.ts", - "./testTs/test/salsa/jsContainerMergeTsDeclaration.ts", - "./testTs/test/salsa/jsObjectsMarkedAsOpenEnded.ts", - "./testTs/test/salsa/moduleExportAlias.ts", - "./testTs/test/salsa/moduleExportAlias2.ts", - "./testTs/test/salsa/moduleExportAssignment.ts", - "./testTs/test/salsa/moduleExportAssignment6.ts", - "./testTs/test/salsa/moduleExportNestedNamespaces.ts", - "./testTs/test/salsa/multipleDeclarations.ts", - "./testTs/test/salsa/nestedPrototypeAssignment.ts", - "./testTs/test/salsa/plainJSRedeclare3.ts", - "./testTs/test/salsa/privateIdentifierExpando.ts", - "./testTs/test/salsa/propertyAssignmentOnImportedSymbol.ts", - "./testTs/test/salsa/sourceFileMergeWithFunction.ts", - "./testTs/test/salsa/spellingUncheckedJS.ts", - "./testTs/test/salsa/thisPropertyAssignmentCircular.ts", - "./testTs/test/salsa/topLevelThisAssignment.ts", - "./testTs/test/salsa/typeFromPropertyAssignment.ts", - "./testTs/test/salsa/typeFromPropertyAssignment14.ts", - "./testTs/test/salsa/typeFromPropertyAssignment15.ts", - "./testTs/test/salsa/typeFromPropertyAssignment16.ts", - "./testTs/test/salsa/typeFromPropertyAssignment17.ts", - "./testTs/test/salsa/typeFromPropertyAssignment18.ts", - "./testTs/test/salsa/typeFromPropertyAssignment19.ts", - "./testTs/test/salsa/typeFromPropertyAssignment2.ts", - "./testTs/test/salsa/typeFromPropertyAssignment23.ts", - "./testTs/test/salsa/typeFromPropertyAssignment24.ts", - "./testTs/test/salsa/typeFromPropertyAssignment25.ts", - "./testTs/test/salsa/typeFromPropertyAssignment3.ts", - "./testTs/test/salsa/typeFromPropertyAssignment34.ts", - "./testTs/test/salsa/typeFromPropertyAssignment35.ts", - "./testTs/test/salsa/typeFromPropertyAssignment37.ts", - "./testTs/test/salsa/typeFromPropertyAssignment4.ts", - "./testTs/test/salsa/typeFromPropertyAssignmentWithExport.ts", - "./testTs/test/salsa/unannotatedParametersAreOptional.ts", - "./testTs/test/salsa/varRequireFromJavascript.ts", - "./testTs/test/salsa/varRequireFromTypescript.ts", - "./testTs/test/scanner/ecmascript3/scannerES3NumericLiteral2.ts", - "./testTs/test/types/contextualTypes/commaOperator/contextuallyTypeCommaOperator01.ts", - "./testTs/test/types/import/importTypeGenericTypes.ts", - "./testTs/test/types/import/importTypeLocal.ts", - "./testTs/test/types/intersection/intersectionsAndEmptyObjects.ts", - "./testTs/test/types/members/augmentedTypeBracketAccessIndexSignature.ts", - "./testTs/test/types/members/objectTypeWithCallSignatureHidingMembersOfExtendedFunction.ts", - "./testTs/test/types/members/objectTypeWithConstructSignatureHidingMembersOfExtendedFunction.ts", - "./testTs/test/types/never/neverInference.ts", - "./testTs/test/types/tuple/readonlyArraysAndTuples2.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/stringLiteralTypeIsSubtypeOfString.ts", - "./testTs/test/types/union/discriminatedUnionTypes3.ts", - "./testTs/test/typings/typingsLookup1.ts", - "./testTs/test/typings/typingsLookup2.ts", - "./testTs/test/typings/typingsLookup3.ts", - "./testTs/test/typings/typingsLookup4.ts", - "./testTs/test/ambient/ambientInsideNonAmbient.ts", - "./testTs/test/ambient/ambientDeclarations.ts" + "./testTs/test/testts//fixSignatureCaching.ts", + "./testTs/test/testts/ambient/ambientDeclarationsExternal.ts", + "./testTs/test/testts/ambient/ambientDeclarationsPatterns.ts", + "./testTs/test/testts/ambient/ambientShorthand.ts", + "./testTs/test/testts/ambient/ambientShorthand_duplicate.ts", + "./testTs/test/testts/ambient/ambientShorthand_merging.ts", + "./testTs/test/testts/ambient/ambientShorthand_reExport.ts", + "./testTs/test/testts/class/classStaticBlock/classStaticBlock11.ts", + "./testTs/test/testts/classes/classExpressions/classWithStaticFieldInParameterBindingPattern.2.ts", + "./testTs/test/testts/classes/classExpressions/classWithStaticFieldInParameterInitializer.2.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock9.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/superInStaticMembers1.ts", + "./testTs/test/testts/controlFlow/controlFlowIfStatement.ts", + "./testTs/test/testts/controlFlow/dependentDestructuredVariables.ts", + "./testTs/test/testts/declarationEmit/typeReferenceRelatedFiles.ts", + "./testTs/test/testts/decorators/decoratorMetadataWithTypeOnlyImport2.ts", + "./testTs/test/testts/directives/ts-expect-error-nocheck-js.ts", + "./testTs/test/testts/dynamicImport/importCallExpressionInUMD5.ts", + "./testTs/test/testts/es2018/invalidTaggedTemplateEscapeSequences.ts", + "./testTs/test/testts/es2020/modules/exportAsNamespace1.ts", + "./testTs/test/testts/es2020/modules/exportAsNamespace2.ts", + "./testTs/test/testts/es2020/modules/exportAsNamespace3.ts", + "./testTs/test/testts/es2020/modules/exportAsNamespace4.ts", + "./testTs/test/testts/es6/computedProperties/computedPropertyNames52.ts", + "./testTs/test/testts/es6/decorators/class/accessor/decoratorOnClassAccessor1.es6.ts", + "./testTs/test/testts/es6/decorators/class/method/decoratorOnClassMethod1.es6.ts", + "./testTs/test/testts/es6/decorators/class/method/parameter/decoratorOnClassMethodParameter1.es6.ts", + "./testTs/test/testts/es6/decorators/class/property/decoratorOnClassProperty1.es6.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesAssignment.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesFunctionArgument.ts", + "./testTs/test/testts/expressions/commaOperator/commaOperatorOtherValidOperation.ts", + "./testTs/test/testts/expressions/commaOperator/commaOperatorsMultipleOperators.ts", + "./testTs/test/testts/expressions/commaOperator/commaOperatorWithSecondOperandAnyType.ts", + "./testTs/test/testts/expressions/commaOperator/commaOperatorWithSecondOperandBooleanType.ts", + "./testTs/test/testts/expressions/commaOperator/commaOperatorWithSecondOperandNumberType.ts", + "./testTs/test/testts/expressions/commaOperator/commaOperatorWithSecondOperandObjectType.ts", + "./testTs/test/testts/expressions/commaOperator/commaOperatorWithSecondOperandStringType.ts", + "./testTs/test/testts/expressions/conditonalOperator/conditionalOperatorWithIdenticalBCT.ts", + "./testTs/test/testts/expressions/functionCalls/callWithMissingVoidUndefinedUnknownAnyInJs.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterBindingPattern.2.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterInitializer.2.ts", + "./testTs/test/testts/expressions/optionalChaining/optionalChainingInParameterBindingPattern.2.ts", + "./testTs/test/testts/expressions/optionalChaining/optionalChainingInParameterInitializer.2.ts", + "./testTs/test/testts/expressions/typeGuards/nullOrUndefinedTypeGuardIsOrderIndependent.ts", + "./testTs/test/testts/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithBooleanType.ts", + "./testTs/test/testts/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithEnumType.ts", + "./testTs/test/testts/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithNumberType.ts", + "./testTs/test/testts/expressions/unaryOperators/bitwiseNotOperator/bitwiseNotOperatorWithStringType.ts", + "./testTs/test/testts/externalModules/asiPreventsParsingAsAmbientExternalModule01.ts", + "./testTs/test/testts/externalModules/asiPreventsParsingAsAmbientExternalModule02.ts", + "./testTs/test/testts/externalModules/commonJsImportBindingElementNarrowType.ts", + "./testTs/test/testts/externalModules/exportAssignDottedName.ts", + "./testTs/test/testts/externalModules/exportAssignImportedIdentifier.ts", + "./testTs/test/testts/externalModules/exportAssignTypes.ts", + "./testTs/test/testts/externalModules/exportDeclaredModule.ts", + "./testTs/test/testts/externalModules/exportNonVisibleType.ts", + "./testTs/test/testts/externalModules/moduleResolutionWithExtensions.ts", + "./testTs/test/testts/externalModules/moduleScoping.ts", + "./testTs/test/testts/externalModules/relativePathToDeclarationFile.ts", + "./testTs/test/testts/externalModules/topLevelAwait.1.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target11.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target3.ts", + "./testTs/test/testts/externalModules/typeOnly/ambient.ts", + "./testTs/test/testts/externalModules/typeOnly/cjsImportInES2015.ts", + "./testTs/test/testts/externalModules/typeOnly/exportDeclaration_moduleSpecifier-isolatedModules.ts", + "./testTs/test/testts/externalModules/typeOnly/exportDeclaration_value.ts", + "./testTs/test/testts/externalModules/typeOnly/implementsClause.ts", + "./testTs/test/testts/externalModules/typeOnly/importDefaultNamedType.ts", + "./testTs/test/testts/externalModules/typeOnly/nestedNamespace.ts", + "./testTs/test/testts/externalModules/typeOnly/typeQuery.ts", + "./testTs/test/testts/functions/parameterInitializersForwardReferencing.2.ts", + "./testTs/test/testts/importAssertion/importAssertion1.ts", + "./testTs/test/testts/importAssertion/importAssertion2.ts", + "./testTs/test/testts/importAssertion/importAssertion3.ts", + "./testTs/test/testts/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace02.ts", + "./testTs/test/testts/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace04.ts", + "./testTs/test/testts/jsdoc/callbackTagVariadicType.ts", + "./testTs/test/testts/jsdoc/checkJsdocParamTag1.ts", + "./testTs/test/testts/jsdoc/constructorTagOnNestedBinaryExpression.ts", + "./testTs/test/testts/jsdoc/enumTagImported.ts", + "./testTs/test/testts/jsdoc/exportedAliasedEnumTag.ts", + "./testTs/test/testts/jsdoc/exportedEnumTypeAndValue.ts", + "./testTs/test/testts/jsdoc/jsdocAugments_qualifiedName.ts", + "./testTs/test/testts/jsdoc/jsdocAugments_withTypeParameter.ts", + "./testTs/test/testts/jsdoc/jsdocImportType.ts", + "./testTs/test/testts/jsdoc/jsdocImportType2.ts", + "./testTs/test/testts/jsdoc/jsdocImportTypeReferenceToCommonjsModule.ts", + "./testTs/test/testts/jsdoc/jsdocTemplateTag4.ts", + "./testTs/test/testts/jsdoc/jsdocTemplateTag5.ts", + "./testTs/test/testts/jsdoc/jsdocTypeReferenceToImport.ts", + "./testTs/test/testts/jsdoc/jsdocTypeReferenceToImportOfClassExpression.ts", + "./testTs/test/testts/jsdoc/jsdocTypeReferenceToImportOfFunctionExpression.ts", + "./testTs/test/testts/jsdoc/jsdocTypeReferenceToMergedClass.ts", + "./testTs/test/testts/jsdoc/jsdocTypeReferenceToValue.ts", + "./testTs/test/testts/jsdoc/jsdocTypeTag.ts", + "./testTs/test/testts/jsdoc/paramTagBracketsAddOptionalUndefined.ts", + "./testTs/test/testts/jsdoc/returnTagTypeGuard.ts", + "./testTs/test/testts/jsdoc/typedefCrossModule.ts", + "./testTs/test/testts/jsdoc/typedefTagExtraneousProperty.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsImportNamespacedType.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsTypedefAndImportTypes.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsTypedefPropertyAndExportAssignment.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsTypeReassignmentFromDeclaration.ts", + "./testTs/test/testts/jsx/tsxEmitSpreadAttribute.ts", + "./testTs/test/testts/jsx/tsxReactEmitSpreadAttribute.ts", + "./testTs/test/testts/moduleResolution/packageJsonMain.ts", + "./testTs/test/testts/moduleResolution/scopedPackages.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport_allowJs.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport_vsAmbient.ts", + "./testTs/test/testts/override/override10.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration17.ts", + "./testTs/test/testts/parser/ecmascript5/ConstructorDeclarations/parserConstructorDeclaration5.ts", + "./testTs/test/testts/parser/ecmascript5/Protected/Protected3.ts", + "./testTs/test/testts/references/library-reference-10.ts", + "./testTs/test/testts/references/library-reference-11.ts", + "./testTs/test/testts/references/library-reference-12.ts", + "./testTs/test/testts/references/library-reference-13.ts", + "./testTs/test/testts/references/library-reference-2.ts", + "./testTs/test/testts/references/library-reference-4.ts", + "./testTs/test/testts/references/library-reference-8.ts", + "./testTs/test/testts/salsa/annotatedThisPropertyInitializerDoesntNarrow.ts", + "./testTs/test/testts/salsa/circularMultipleAssignmentDeclaration.ts", + "./testTs/test/testts/salsa/commonJSAliasedExport.ts", + "./testTs/test/testts/salsa/commonJSImportClassTypeReference.ts", + "./testTs/test/testts/salsa/commonJSImportNestedClassTypeReference.ts", + "./testTs/test/testts/salsa/commonJSReexport.ts", + "./testTs/test/testts/salsa/constructorFunctionMergeWithClass.ts", + "./testTs/test/testts/salsa/contextualTypedSpecialAssignment.ts", + "./testTs/test/testts/salsa/defaultPropertyAssignedClassWithPrototype.ts", + "./testTs/test/testts/salsa/exportNestedNamespaces.ts", + "./testTs/test/testts/salsa/inferingFromAny.ts", + "./testTs/test/testts/salsa/inferringClassMembersFromAssignments3.ts", + "./testTs/test/testts/salsa/inferringClassMembersFromAssignments4.ts", + "./testTs/test/testts/salsa/inferringClassMembersFromAssignments5.ts", + "./testTs/test/testts/salsa/inferringClassMembersFromAssignments7.ts", + "./testTs/test/testts/salsa/inferringClassStaticMembersFromAssignments.ts", + "./testTs/test/testts/salsa/jsContainerMergeJsContainer.ts", + "./testTs/test/testts/salsa/jsContainerMergeTsDeclaration.ts", + "./testTs/test/testts/salsa/jsObjectsMarkedAsOpenEnded.ts", + "./testTs/test/testts/salsa/moduleExportAlias.ts", + "./testTs/test/testts/salsa/moduleExportAlias2.ts", + "./testTs/test/testts/salsa/moduleExportAssignment.ts", + "./testTs/test/testts/salsa/moduleExportAssignment6.ts", + "./testTs/test/testts/salsa/moduleExportNestedNamespaces.ts", + "./testTs/test/testts/salsa/multipleDeclarations.ts", + "./testTs/test/testts/salsa/nestedPrototypeAssignment.ts", + "./testTs/test/testts/salsa/plainJSRedeclare3.ts", + "./testTs/test/testts/salsa/privateIdentifierExpando.ts", + "./testTs/test/testts/salsa/propertyAssignmentOnImportedSymbol.ts", + "./testTs/test/testts/salsa/sourceFileMergeWithFunction.ts", + "./testTs/test/testts/salsa/spellingUncheckedJS.ts", + "./testTs/test/testts/salsa/thisPropertyAssignmentCircular.ts", + "./testTs/test/testts/salsa/topLevelThisAssignment.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment14.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment15.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment16.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment17.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment18.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment19.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment2.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment23.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment24.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment25.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment3.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment34.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment35.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment37.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment4.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignmentWithExport.ts", + "./testTs/test/testts/salsa/unannotatedParametersAreOptional.ts", + "./testTs/test/testts/salsa/varRequireFromJavascript.ts", + "./testTs/test/testts/salsa/varRequireFromTypescript.ts", + "./testTs/test/testts/scanner/ecmascript3/scannerES3NumericLiteral2.ts", + "./testTs/test/testts/types/contextualTypes/commaOperator/contextuallyTypeCommaOperator01.ts", + "./testTs/test/testts/types/import/importTypeGenericTypes.ts", + "./testTs/test/testts/types/import/importTypeLocal.ts", + "./testTs/test/testts/types/intersection/intersectionsAndEmptyObjects.ts", + "./testTs/test/testts/types/members/augmentedTypeBracketAccessIndexSignature.ts", + "./testTs/test/testts/types/members/objectTypeWithCallSignatureHidingMembersOfExtendedFunction.ts", + "./testTs/test/testts/types/members/objectTypeWithConstructSignatureHidingMembersOfExtendedFunction.ts", + "./testTs/test/testts/types/never/neverInference.ts", + "./testTs/test/testts/types/tuple/readonlyArraysAndTuples2.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/stringLiteralTypeIsSubtypeOfString.ts", + "./testTs/test/testts/types/union/discriminatedUnionTypes3.ts", + "./testTs/test/testts/typings/typingsLookup1.ts", + "./testTs/test/testts/typings/typingsLookup2.ts", + "./testTs/test/testts/typings/typingsLookup3.ts", + "./testTs/test/testts/typings/typingsLookup4.ts", + "./testTs/test/testts/ambient/ambientInsideNonAmbient.ts", + "./testTs/test/testts/ambient/ambientDeclarations.ts" ], "import_skip":[ - "./testTs/test/ambient/ambientDeclarationsPatterns/declarations.d.ts", - "./testTs/test/ambient/ambientShorthand_merging/declarations1.d.ts", - "./testTs/test/ambient/ambientShorthand_merging/declarations2.d.ts", - "./testTs/test/ambient/ambientShorthand_reExport/declarations.d.ts", - "./testTs/test/ambient/ambientShorthand_reExport/jquery.d.ts", - "./testTs/test/ambient/ambientShorthand_reExport/reExportAll.ts", - "./testTs/test/ambient/ambientShorthand_reExport/reExportX.ts", - "./testTs/test/declarationEmit/typeReferenceRelatedFiles/package.json", - "./testTs/test/declarationEmit/typeReferenceRelatedFiles/main.ts", - "./testTs/test/declarationEmit/typeReferenceRelatedFiles/fs.d.ts", - "./testTs/test/externalModules/typeOnly/importDefaultNamedType/a.ts", - "./testTs/test/jsdoc/enumTagImported/mod1.js", - "./testTs/test/jsdoc/jsdocAugments_qualifiedName/a.js", - "./testTs/test/jsdoc/declarations/jsDeclarationsImportNamespacedType/mod1.js", - "./testTs/test/moduleResolution/scopedPackages/index.d.ts", - "./testTs/test/moduleResolution/scopedPackages/z.d.ts", - "./testTs/test/moduleResolution/scopedPackagesClassic/index.d.ts", - "./testTs/test/moduleResolution/untypedModuleImport_allowJs/index.js", - "./testTs/test/moduleResolution/untypedModuleImport_allowJs/foo.js", - "./testTs/test/moduleResolution/untypedModuleImport_vsAmbient/declarations.d.ts", - "./testTs/test/moduleResolution/untypedModuleImport_vsAmbient/index.js", - "./testTs/test/salsa/propertyAssignmentOnImportedSymbol/mod1.js", - "./testTs/test/typings/typingsLookup4/index.tsx", - "./testTs/test/typings/typingsLookup4/jquery.d.ts", - "./testTs/test/typings/typingsLookup4/kquery.d.ts", - "./testTs/test/typings/typingsLookup4/lquery.d.ts", - "./testTs/test/typings/typingsLookup4/mquery.d.ts", - "./testTs/test/typings/typingsLookup4/package.json", - "./testTs/test/typings/typingsLookup4/tsconfig.json", - "./testTs/test/jsdoc/enumTagImported/enumTagImported.ts", - "./testTs/test/jsdoc/jsdocAugments_qualifiedName/jsdocAugments_qualifiedName.ts", - "./testTs/test/moduleResolution/untypedModuleImport_allowJs/untypedModuleImport_allowJs.ts", - "./testTs/test/moduleResolution/untypedModuleImport_vsAmbient/untypedModuleImport_vsAmbient.ts" + "./testTs/test/testts/ambient/ambientDeclarationsPatterns/declarations.d.ts", + "./testTs/test/testts/ambient/ambientShorthand_merging/declarations1.d.ts", + "./testTs/test/testts/ambient/ambientShorthand_merging/declarations2.d.ts", + "./testTs/test/testts/ambient/ambientShorthand_reExport/declarations.d.ts", + "./testTs/test/testts/ambient/ambientShorthand_reExport/jquery.d.ts", + "./testTs/test/testts/ambient/ambientShorthand_reExport/reExportAll.ts", + "./testTs/test/testts/ambient/ambientShorthand_reExport/reExportX.ts", + "./testTs/test/testts/declarationEmit/typeReferenceRelatedFiles/package.json", + "./testTs/test/testts/declarationEmit/typeReferenceRelatedFiles/main.ts", + "./testTs/test/testts/declarationEmit/typeReferenceRelatedFiles/fs.d.ts", + "./testTs/test/testts/externalModules/typeOnly/importDefaultNamedType/a.ts", + "./testTs/test/testts/jsdoc/enumTagImported/mod1.js", + "./testTs/test/testts/jsdoc/jsdocAugments_qualifiedName/a.js", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsImportNamespacedType/mod1.js", + "./testTs/test/testts/moduleResolution/scopedPackages/index.d.ts", + "./testTs/test/testts/moduleResolution/scopedPackages/z.d.ts", + "./testTs/test/testts/moduleResolution/scopedPackagesClassic/index.d.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport_allowJs/index.js", + "./testTs/test/testts/moduleResolution/untypedModuleImport_allowJs/foo.js", + "./testTs/test/testts/moduleResolution/untypedModuleImport_vsAmbient/declarations.d.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport_vsAmbient/index.js", + "./testTs/test/testts/salsa/propertyAssignmentOnImportedSymbol/mod1.js", + "./testTs/test/testts/typings/typingsLookup4/index.tsx", + "./testTs/test/testts/typings/typingsLookup4/jquery.d.ts", + "./testTs/test/testts/typings/typingsLookup4/kquery.d.ts", + "./testTs/test/testts/typings/typingsLookup4/lquery.d.ts", + "./testTs/test/testts/typings/typingsLookup4/mquery.d.ts", + "./testTs/test/testts/typings/typingsLookup4/package.json", + "./testTs/test/testts/typings/typingsLookup4/tsconfig.json", + "./testTs/test/testts/jsdoc/enumTagImported/enumTagImported.ts", + "./testTs/test/testts/jsdoc/jsdocAugments_qualifiedName/jsdocAugments_qualifiedName.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport_allowJs/untypedModuleImport_allowJs.ts", + "./testTs/test/testts/moduleResolution/untypedModuleImport_vsAmbient/untypedModuleImport_vsAmbient.ts" ], "code_rule":[ - "./testTs/test/parser/ecmascript5/ObjectTypes/parserObjectType4.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock2.ts", - "./testTs/test/classes/constructorDeclarations/classConstructorParametersAccessibility3.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classAppearsToHaveMembersOfObject.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/derivedTypeDoesNotRequireExtendsClause.ts", - "./testTs/test/classes/classDeclarations/classBody/classWithEmptyBody.ts", - "./testTs/test/controlFlow/typeGuardsNestedAssignments.ts", - "./testTs/test/expressions/conditonalOperator/conditionalOperatorWithIdenticalBCT.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormIsType.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormTypeOfString.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormInstanceOf.ts", - "./testTs/test/expressions/typeGuards/typeGuardFunctionGenerics.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormTypeOfBoolean.ts", - "./testTs/test/expressions/asOperator/asOperatorASI.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnCallSignature.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnInstantiatedConstructorSignature.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnInstantiatedCallSignature.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnInstantiatedCallSignature.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnInstantiatedConstructorSignature.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnConstructorSignature.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnIndexSignature.ts", - "./testTs/test/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithLHSIsObject.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration19.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration16.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration20.ts", - "./testTs/test/types/import/importTypeGenericTypes.ts", - "./testTs/test/types/import/importTypeLocal.ts", - "./testTs/test/types/objectTypeLiteral/propertySignatures/stringNamedPropertyAccess.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignaturesWithOptionalParameters2.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignaturesWithOptionalParameters.ts", - "./testTs/test/types/specifyingTypes/typeQueries/typeQueryWithReservedWords.ts", - "./testTs/test/types/specifyingTypes/typeLiterals/arrayOfFunctionTypes3.ts", - "./testTs/test/types/thisType/fluentClasses.ts", - "./testTs/test/types/members/objectTypeHidingMembersOfObject.ts", - "./testTs/test/types/members/objectTypeWithStringNamedPropertyOfIllegalCharacters.ts", - "./testTs/test/types/members/objectTypeWithNumericProperty.ts", - "./testTs/test/types/members/objectTypePropertyAccess.ts", - "./testTs/test/types/typeAliases/classDoesNotDependOnBaseTypes.ts", - "./testTs/test/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionInferenceWithTypeParameter.ts", - "./testTs/test/types/primitives/undefined/validUndefinedAssignments.ts", - "./testTs/test/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithoutConstraints.ts", - "./testTs/test/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints.ts", - "./testTs/test/types/typeParameters/typeParameterLists/innerTypeParameterShadowingOuterOne2.ts", - "./testTs/test/types/typeParameters/typeParameterLists/typeParameterUsedAsConstraint.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures2.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures5.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures4.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures2.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures4.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithStringIndexers2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers1.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithStringIndexers.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers3.ts", - "./testTs/test/types/typeRelationships/bestCommonType/bestCommonTypeOfConditionalExpressions.ts", - "./testTs/test/types/typeRelationships/bestCommonType/bestCommonTypeOfConditionalExpressions2.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments4.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectTypeArgs2.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints2.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance4.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers2.ts", - "./testTs/test/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration5.ts", - "./testTs/test/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator1.ts", - "./testTs/test/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator2.ts", - "./testTs/test/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator3.ts", - "./testTs/test/parser/ecmascript5/ObjectTypes/parserObjectType3.ts", - "./testTs/test/parser/ecmascript5/ParameterLists/parserParameterList12.ts", - "./testTs/test/salsa/constructorFunctions3.ts", - "./testTs/test/salsa/inferringClassMembersFromAssignments6.ts", - "./testTs/test/salsa/methodsReturningThis.ts", - "./testTs/test/salsa/privateConstructorFunction.ts", - "./testTs/test/salsa/propertiesOfGenericConstructorFunctions.ts", - "./testTs/test/salsa/thisTypeOfConstructorFunctions.ts", - "./testTs/test/salsa/typeFromPropertyAssignment27.ts", - "./testTs/test/salsa/typeFromPropertyAssignment40.ts", - "./testTs/test/salsa/typeFromPrototypeAssignment4.ts", - "./testTs/test/types/literal/stringLiteralsWithTypeAssertions01.ts", - "./testTs/test/types/primitives/stringLiteral/stringLiteralType.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesInUnionTypes01.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesInUnionTypes02.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesInUnionTypes03.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesOverloadAssignability03.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesTypePredicates01.ts", - "./testTs/test/types/typeParameters/typeParameterLists/innerTypeParameterShadowingOuterOne.ts", - "./testTs/test/types/typeParameters/typeParameterLists/typeParametersAvailableInNestedScope2.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithGenericSignatureArguments.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithNonSymmetricSubtypes.ts", - "./testTs/test/controlFlow/controlFlowConditionalExpression.ts", - "./testTs/test/declarationEmit/nullPropertyName.ts", - "./testTs/test/es2021/logicalAssignment/logicalAssignment5.ts", - "./testTs/test/es6/classExpressions/typeArgumentInferenceWithClassExpression1.ts", - "./testTs/test/es6/classExpressions/typeArgumentInferenceWithClassExpression3.ts", - "./testTs/test/es6/destructuring/emptyArrayBindingPatternParameter02.ts", - "./testTs/test/es6/destructuring/emptyArrayBindingPatternParameter03.ts", - "./testTs/test/es6/destructuring/emptyObjectBindingPatternParameter02.ts", - "./testTs/test/es6/destructuring/emptyObjectBindingPatternParameter03.ts", - "./testTs/test/expressions/binaryOperators/logicalAndOperator/logicalAndOperatorWithTypeParameters.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target6.ts", - "./testTs/test/functions/parameterInitializersBackwardReferencing.ts", - "./testTs/test/jsdoc/callbackTagNamespace.ts", - "./testTs/test/jsdoc/checkJsdocTypedefInParamTag1.ts", - "./testTs/test/jsdoc/jsdocLiteral.ts", - "./testTs/test/jsdoc/jsdocNeverUndefinedNull.ts", - "./testTs/test/jsdoc/jsdocParseMatchingBackticks.ts", - "./testTs/test/jsdoc/jsdocParseStarEquals.ts", - "./testTs/test/jsdoc/linkTagEmit1.ts", - "./testTs/test/jsdoc/moduleExportsElementAccessAssignment2.ts", - "./testTs/test/jsdoc/paramTagTypeResolution2.ts", - "./testTs/test/jsdoc/parseLinkTag.ts", - "./testTs/test/jsdoc/thisTag1.ts", - "./testTs/test/jsdoc/typeTagWithGenericSignature.ts" + "./testTs/test/testts/parser/ecmascript5/ObjectTypes/parserObjectType4.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock2.ts", + "./testTs/test/testts/classes/constructorDeclarations/classConstructorParametersAccessibility3.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classAppearsToHaveMembersOfObject.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/derivedTypeDoesNotRequireExtendsClause.ts", + "./testTs/test/testts/classes/classDeclarations/classBody/classWithEmptyBody.ts", + "./testTs/test/testts/controlFlow/typeGuardsNestedAssignments.ts", + "./testTs/test/testts/expressions/conditonalOperator/conditionalOperatorWithIdenticalBCT.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormIsType.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormTypeOfString.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormInstanceOf.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardFunctionGenerics.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormTypeOfBoolean.ts", + "./testTs/test/testts/expressions/asOperator/asOperatorASI.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnCallSignature.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnInstantiatedConstructorSignature.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnInstantiatedCallSignature.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnInstantiatedCallSignature.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNoRelationshipObjectsOnInstantiatedConstructorSignature.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnConstructorSignature.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnIndexSignature.ts", + "./testTs/test/testts/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithLHSIsObject.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration19.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration16.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration20.ts", + "./testTs/test/testts/types/import/importTypeGenericTypes.ts", + "./testTs/test/testts/types/import/importTypeLocal.ts", + "./testTs/test/testts/types/objectTypeLiteral/propertySignatures/stringNamedPropertyAccess.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignaturesWithOptionalParameters2.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignaturesWithOptionalParameters.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/typeQueryWithReservedWords.ts", + "./testTs/test/testts/types/specifyingTypes/typeLiterals/arrayOfFunctionTypes3.ts", + "./testTs/test/testts/types/thisType/fluentClasses.ts", + "./testTs/test/testts/types/members/objectTypeHidingMembersOfObject.ts", + "./testTs/test/testts/types/members/objectTypeWithStringNamedPropertyOfIllegalCharacters.ts", + "./testTs/test/testts/types/members/objectTypeWithNumericProperty.ts", + "./testTs/test/testts/types/members/objectTypePropertyAccess.ts", + "./testTs/test/testts/types/typeAliases/classDoesNotDependOnBaseTypes.ts", + "./testTs/test/testts/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionInferenceWithTypeParameter.ts", + "./testTs/test/testts/types/primitives/undefined/validUndefinedAssignments.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithoutConstraints.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/innerTypeParameterShadowingOuterOne2.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/typeParameterUsedAsConstraint.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures2.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures5.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures4.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures2.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures4.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithStringIndexers2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers1.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithStringIndexers.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithNumericIndexers3.ts", + "./testTs/test/testts/types/typeRelationships/bestCommonType/bestCommonTypeOfConditionalExpressions.ts", + "./testTs/test/testts/types/typeRelationships/bestCommonType/bestCommonTypeOfConditionalExpressions2.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments4.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectTypeArgs2.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints2.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/constructSignatureAssignabilityInInheritance4.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers2.ts", + "./testTs/test/testts/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration5.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator1.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator2.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserAmbiguityWithBinaryOperator3.ts", + "./testTs/test/testts/parser/ecmascript5/ObjectTypes/parserObjectType3.ts", + "./testTs/test/testts/parser/ecmascript5/ParameterLists/parserParameterList12.ts", + "./testTs/test/testts/salsa/constructorFunctions3.ts", + "./testTs/test/testts/salsa/inferringClassMembersFromAssignments6.ts", + "./testTs/test/testts/salsa/methodsReturningThis.ts", + "./testTs/test/testts/salsa/privateConstructorFunction.ts", + "./testTs/test/testts/salsa/propertiesOfGenericConstructorFunctions.ts", + "./testTs/test/testts/salsa/thisTypeOfConstructorFunctions.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment27.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment40.ts", + "./testTs/test/testts/salsa/typeFromPrototypeAssignment4.ts", + "./testTs/test/testts/types/literal/stringLiteralsWithTypeAssertions01.ts", + "./testTs/test/testts/types/primitives/stringLiteral/stringLiteralType.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesInUnionTypes01.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesInUnionTypes02.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesInUnionTypes03.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesOverloadAssignability03.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesTypePredicates01.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/innerTypeParameterShadowingOuterOne.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/typeParametersAvailableInNestedScope2.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithGenericSignatureArguments.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithNonSymmetricSubtypes.ts", + "./testTs/test/testts/controlFlow/controlFlowConditionalExpression.ts", + "./testTs/test/testts/declarationEmit/nullPropertyName.ts", + "./testTs/test/testts/es2021/logicalAssignment/logicalAssignment5.ts", + "./testTs/test/testts/es6/classExpressions/typeArgumentInferenceWithClassExpression1.ts", + "./testTs/test/testts/es6/classExpressions/typeArgumentInferenceWithClassExpression3.ts", + "./testTs/test/testts/es6/destructuring/emptyArrayBindingPatternParameter02.ts", + "./testTs/test/testts/es6/destructuring/emptyArrayBindingPatternParameter03.ts", + "./testTs/test/testts/es6/destructuring/emptyObjectBindingPatternParameter02.ts", + "./testTs/test/testts/es6/destructuring/emptyObjectBindingPatternParameter03.ts", + "./testTs/test/testts/expressions/binaryOperators/logicalAndOperator/logicalAndOperatorWithTypeParameters.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target6.ts", + "./testTs/test/testts/functions/parameterInitializersBackwardReferencing.ts", + "./testTs/test/testts/jsdoc/callbackTagNamespace.ts", + "./testTs/test/testts/jsdoc/checkJsdocTypedefInParamTag1.ts", + "./testTs/test/testts/jsdoc/jsdocLiteral.ts", + "./testTs/test/testts/jsdoc/jsdocNeverUndefinedNull.ts", + "./testTs/test/testts/jsdoc/jsdocParseMatchingBackticks.ts", + "./testTs/test/testts/jsdoc/jsdocParseStarEquals.ts", + "./testTs/test/testts/jsdoc/linkTagEmit1.ts", + "./testTs/test/testts/jsdoc/moduleExportsElementAccessAssignment2.ts", + "./testTs/test/testts/jsdoc/paramTagTypeResolution2.ts", + "./testTs/test/testts/jsdoc/parseLinkTag.ts", + "./testTs/test/testts/jsdoc/thisTag1.ts", + "./testTs/test/testts/jsdoc/typeTagWithGenericSignature.ts" ], "no_case":[ - "./testTs/test/inferFromBindingPattern.ts", - "./testTs/test/scanner/jsdocInvalidTokens.ts", - "./testTs/test/scanner/ecmascript3/scannerES3NumericLiteral5.ts", - "./testTs/test/scanner/ecmascript3/scannerES3NumericLiteral1.ts", - "./testTs/test/scanner/ecmascript3/scannerES3NumericLiteral7.ts", - "./testTs/test/scanner/ecmascript5/scannerEnum1.ts", - "./testTs/test/scanner/ecmascript5/scannerStringLiteralWithContainingNullCharacter1.ts", - "./testTs/test/scanner/ecmascript5/scannerNonAsciiHorizontalWhitespace.ts", - "./testTs/test/test_ts/test_full.ts", - "./testTs/test/statements/returnStatements/returnStatements.ts", - "./testTs/test/statements/for-inStatements/for-inStatementsArray.ts", - "./testTs/test/statements/for-await-ofStatements/emitter.forAwait.ts", - "./testTs/test/statements/continueStatements/forContinueStatements.ts", - "./testTs/test/statements/continueStatements/whileContinueStatements.ts", - "./testTs/test/statements/continueStatements/forInContinueStatements.ts", - "./testTs/test/statements/continueStatements/doWhileContinueStatements.ts", - "./testTs/test/statements/breakStatements/whileBreakStatements.ts", - "./testTs/test/statements/breakStatements/doWhileBreakStatements.ts", - "./testTs/test/statements/breakStatements/forInBreakStatements.ts", - "./testTs/test/statements/breakStatements/forBreakStatements.ts", - "./testTs/test/statements/ifDoWhileStatements/ifDoWhileStatements.ts", - "./testTs/test/statements/forStatements/forStatementsMultipleValidDecl.ts", - "./testTs/test/statements/forStatements/forStatements.ts", - "./testTs/test/statements/throwStatements/throwStatements.ts", - "./testTs/test/statements/throwStatements/throwInEnclosingStatements.ts", - "./testTs/test/statements/VariableStatements/everyTypeWithAnnotationAndInitializer.ts", - "./testTs/test/statements/VariableStatements/validMultipleVariableDeclarations.ts", - "./testTs/test/statements/VariableStatements/recursiveInitializer.ts", - "./testTs/test/statements/VariableStatements/everyTypeWithInitializer.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of14.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of1.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of11.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of23.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of21.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of5.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of13.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of3.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of24.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of37.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of18.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of4.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of2.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of15.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of22.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of6.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of16.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of33.ts", - "./testTs/test/statements/for-ofStatements/ES5For-of25.ts", - "./testTs/test/controlFlow/controlFlowBinaryOrExpression.ts", - "./testTs/test/controlFlow/controlFlowDoWhileStatement.ts", - "./testTs/test/controlFlow/controlFlowForOfStatement.ts", - "./testTs/test/controlFlow/controlFlowStringIndex.ts", - "./testTs/test/controlFlow/controlFlowAliasingCatchVariables.ts", - "./testTs/test/controlFlow/controlFlowElementAccess2.ts", - "./testTs/test/controlFlow/controlFlowCommaOperator.ts", - "./testTs/test/controlFlow/assertionTypePredicates2.ts", - "./testTs/test/controlFlow/controlFlowBinaryAndExpression.ts", - "./testTs/test/controlFlow/controlFlowWithTemplateLiterals.ts", - "./testTs/test/controlFlow/controlFlowInstanceofExtendsFunction.ts", - "./testTs/test/controlFlow/constLocalsInFunctionExpressions.ts", - "./testTs/test/controlFlow/controlFlowForStatement.ts", - "./testTs/test/controlFlow/controlFlowAssignmentExpression.ts", - "./testTs/test/controlFlow/controlFlowTruthiness.ts", - "./testTs/test/controlFlow/typeGuardsAsAssertions.ts", - "./testTs/test/controlFlow/controlFlowOptionalChain2.ts", - "./testTs/test/controlFlow/controlFlowDestructuringDeclaration.ts", - "./testTs/test/controlFlow/controlFlowInOperator.ts", - "./testTs/test/controlFlow/controlFlowForInStatement2.ts", - "./testTs/test/controlFlow/controlFlowForInStatement.ts", - "./testTs/test/controlFlow/controlFlowElementAccess.ts", - "./testTs/test/controlFlow/controlFlowInstanceOfGuardPrimitives.ts", - "./testTs/test/controlFlow/controlFlowWhileStatement.ts", - "./testTs/test/controlFlow/controlFlowIteration.ts", - "./testTs/test/types/import/importTypeAmbient.ts", - "./testTs/test/types/never/neverUnionIntersection.ts", - "./testTs/test/types/never/neverType.ts", - "./testTs/test/types/objectTypeLiteral/objectTypeLiteralSyntax.ts", - "./testTs/test/types/objectTypeLiteral/indexSignatures/stringIndexingResults.ts", - "./testTs/test/types/objectTypeLiteral/indexSignatures/numericIndexingResults.ts", - "./testTs/test/types/objectTypeLiteral/propertySignatures/propertyNameWithoutTypeAnnotation.ts", - "./testTs/test/types/objectTypeLiteral/propertySignatures/propertyNamesOfReservedWords.ts", - "./testTs/test/types/objectTypeLiteral/constructSignatures/constructSignaturesWithOverloadsThatDifferOnlyByReturnType.ts", - "./testTs/test/types/objectTypeLiteral/constructSignatures/constructSignaturesWithIdenticalOverloads.ts", - "./testTs/test/types/objectTypeLiteral/constructSignatures/constructSignaturesWithOverloads.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/identicalCallSignatures.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/specializedSignatureWithOptional.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignatureWithoutAnnotationsOrBody.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint3.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/identicalCallSignatures2.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignaturesThatDifferOnlyByReturnType.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/parametersWithNoAnnotationAreAny.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/stringLiteralTypesInImplementationSignatures.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/typeParameterAsTypeArgument.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/identicalCallSignatures3.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignaturesThatDifferOnlyByReturnType3.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint2.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/specializedSignatureIsSubtypeOfNonSpecializedSignature.ts", - "./testTs/test/types/objectTypeLiteral/callSignatures/callSignatureWithoutReturnTypeAnnotationInference.ts", - "./testTs/test/types/objectTypeLiteral/methodSignatures/methodSignaturesWithOverloads2.ts", - "./testTs/test/types/objectTypeLiteral/methodSignatures/functionLiterals.ts", - "./testTs/test/types/literal/literalTypes2.ts", - "./testTs/test/types/literal/stringEnumLiteralTypes2.ts", - "./testTs/test/types/literal/literalTypes3.ts", - "./testTs/test/types/literal/enumLiteralTypes1.ts", - "./testTs/test/types/literal/stringEnumLiteralTypes1.ts", - "./testTs/test/types/literal/literalTypesAndDestructuring.ts", - "./testTs/test/types/literal/booleanLiteralTypes1.ts", - "./testTs/test/types/literal/numericLiteralTypes2.ts", - "./testTs/test/types/literal/numericLiteralTypes1.ts", - "./testTs/test/types/literal/stringLiteralsAssertionsInEqualityComparisons01.ts", - "./testTs/test/types/literal/literalTypesAndTypeAssertions.ts", - "./testTs/test/types/literal/enumLiteralTypes2.ts", - "./testTs/test/types/literal/literalTypes1.ts", - "./testTs/test/types/literal/booleanLiteralTypes2.ts", - "./testTs/test/types/literal/literalTypeWidening.ts", - "./testTs/test/types/specifyingTypes/typeQueries/typeofModuleWithoutExports.ts", - "./testTs/test/types/specifyingTypes/typeQueries/typeofClass2.ts", - "./testTs/test/types/specifyingTypes/typeLiterals/arrayLiteral.ts", - "./testTs/test/types/specifyingTypes/typeLiterals/functionLiteral.ts", - "./testTs/test/types/specifyingTypes/typeLiterals/parenthesizedTypes.ts", - "./testTs/test/types/specifyingTypes/typeLiterals/functionLiteralForOverloads.ts", - "./testTs/test/types/specifyingTypes/typeLiterals/functionLiteralForOverloads2.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveIndexingWithForIn.ts", - "./testTs/test/types/nonPrimitive/nonPrimitiveIndexingWithForInSupressError.ts", - "./testTs/test/types/nonPrimitive/assignObjectToNonPrimitive.ts", - "./testTs/test/types/thisType/thisTypeInFunctions3.ts", - "./testTs/test/types/thisType/thisTypeInTypePredicate.ts", - "./testTs/test/types/thisType/thisTypeInInterfaces.ts", - "./testTs/test/types/thisType/contextualThisType.ts", - "./testTs/test/types/thisType/thisTypeInTuples.ts", - "./testTs/test/types/thisType/thisTypeInObjectLiterals.ts", - "./testTs/test/types/thisType/contextualThisTypeInJavascript.ts", - "./testTs/test/types/thisType/thisTypeInClasses.ts", - "./testTs/test/types/thisType/fluentInterfaces.ts", - "./testTs/test/types/thisType/thisTypeAndConstraints.ts", - "./testTs/test/types/thisType/inferThisType.ts", - "./testTs/test/types/thisType/thisTypeInBasePropertyAndDerivedContainerOfBase01.ts", - "./testTs/test/types/members/typesWithSpecializedConstructSignatures.ts", - "./testTs/test/types/members/typesWithOptionalProperty.ts", - "./testTs/test/types/members/typesWithSpecializedCallSignatures.ts", - "./testTs/test/types/members/objectTypeWithConstructSignatureHidingMembersOfFunction.ts", - "./testTs/test/types/members/classWithPublicProperty.ts", - "./testTs/test/types/members/classWithProtectedProperty.ts", - "./testTs/test/types/members/objectTypeWithCallSignatureAppearsToBeFunctionType.ts", - "./testTs/test/types/members/objectTypeWithCallSignatureHidingMembersOfFunction.ts", - "./testTs/test/types/localTypes/localTypes2.ts", - "./testTs/test/types/localTypes/localTypes3.ts", - "./testTs/test/types/typeAliases/circularTypeAliasForUnionWithInterface.ts", - "./testTs/test/types/typeAliases/asiPreventsParsingAsTypeAlias02.ts", - "./testTs/test/types/typeAliases/asiPreventsParsingAsTypeAlias01.ts", - "./testTs/test/types/typeAliases/genericTypeAliases.ts", - "./testTs/test/types/typeAliases/interfaceDoesNotDependOnBaseTypes.ts", - "./testTs/test/types/typeAliases/circularTypeAliasForUnionWithClass.ts", - "./testTs/test/types/typeAliases/typeAliases.ts", - "./testTs/test/types/mapped/isomorphicMappedTypeInference.ts", - "./testTs/test/types/mapped/mappedTypesAndObjects.ts", - "./testTs/test/types/mapped/mappedTypeOverlappingStringEnumKeys.ts", - "./testTs/test/types/mapped/mappedTypeModifiers.ts", - "./testTs/test/types/mapped/mappedTypes3.ts", - "./testTs/test/types/mapped/mappedTypesArraysTuples.ts", - "./testTs/test/types/mapped/mappedTypes1.ts", - "./testTs/test/types/mapped/mappedTypes2.ts", - "./testTs/test/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionWitoutTypeParameter.ts", - "./testTs/test/types/contextualTypes/methodDeclarations/contextuallyTypedObjectLiteralMethodDeclaration01.ts", - "./testTs/test/types/contextualTypes/methodDeclarations/contextuallyTypedBindingInitializer.ts", - "./testTs/test/types/contextualTypes/jsxAttributes/contextuallyTypedStringLiteralsInJsxAttributes01.tsx", - "./testTs/test/types/contextualTypes/logicalAnd/contextuallyTypeLogicalAnd01.ts", - "./testTs/test/types/conditional/variance.ts", - "./testTs/test/types/conditional/inferTypes2.ts", - "./testTs/test/types/namedTypes/classWithOptionalParameter.ts", - "./testTs/test/types/namedTypes/genericInstantiationEquivalentToObjectLiteral.ts", - "./testTs/test/types/namedTypes/optionalMethods.ts", - "./testTs/test/types/primitives/string/validStringAssignments.ts", - "./testTs/test/types/primitives/string/stringPropertyAccess.ts", - "./testTs/test/types/primitives/string/extendStringInterface.ts", - "./testTs/test/types/primitives/number/extendNumberInterface.ts", - "./testTs/test/types/primitives/number/numberPropertyAccess.ts", - "./testTs/test/types/primitives/number/validNumberAssignments.ts", - "./testTs/test/types/primitives/undefined/validUndefinedValues.ts", - "./testTs/test/types/primitives/undefined/invalidUndefinedValues.ts", - "./testTs/test/types/primitives/void/validVoidAssignments.ts", - "./testTs/test/types/primitives/void/validVoidValues.ts", - "./testTs/test/types/primitives/boolean/extendBooleanInterface.ts", - "./testTs/test/types/primitives/boolean/validBooleanAssignments.ts", - "./testTs/test/types/primitives/boolean/booleanPropertyAccess.ts", - "./testTs/test/types/primitives/enum/validEnumAssignments.ts", - "./testTs/test/types/union/contextualTypeWithUnionTypeCallSignatures.ts", - "./testTs/test/types/union/contextualTypeWithUnionTypeIndexSignatures.ts", - "./testTs/test/types/union/unionTypeCallSignatures2.ts", - "./testTs/test/types/union/contextualTypeWithUnionTypeMembers.ts", - "./testTs/test/types/union/unionTypeReduction.ts", - "./testTs/test/types/union/unionTypeCallSignatures3.ts", - "./testTs/test/types/union/unionTypeIndexSignature.ts", - "./testTs/test/types/tuple/wideningTuples1.ts", - "./testTs/test/types/tuple/tupleElementTypes1.ts", - "./testTs/test/types/tuple/wideningTuples6.ts", - "./testTs/test/types/tuple/tupleElementTypes2.ts", - "./testTs/test/types/tuple/wideningTuples2.ts", - "./testTs/test/types/tuple/tupleElementTypes3.ts", - "./testTs/test/types/tuple/typeInferenceWithTupleType.ts", - "./testTs/test/types/tuple/tupleElementTypes4.ts", - "./testTs/test/types/tuple/named/namedTupleMembers.ts", - "./testTs/test/types/keyof/keyofAndIndexedAccess.ts", - "./testTs/test/types/keyof/keyofIntersection.ts", - "./testTs/test/types/any/assignEveryTypeToAny.ts", - "./testTs/test/types/any/anyPropertyAccess.ts", - "./testTs/test/types/any/anyAsFunctionCall.ts", - "./testTs/test/types/typeParameters/recurringTypeParamForContainerOfBase01.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraint.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraintTransitively2.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/functionConstraintSatisfaction.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/instantiateGenericClassWithZeroTypeArguments.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints3.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints2.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/callGenericFunctionWithZeroTypeArguments.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/constraintSatisfactionWithAny.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/constraintSatisfactionWithAny2.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraintTransitively.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/functionConstraintSatisfaction3.ts", - "./testTs/test/types/typeParameters/typeArgumentLists/constraintSatisfactionWithEmptyObject.ts", - "./testTs/test/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints3.ts", - "./testTs/test/types/typeParameters/typeParameterLists/typeParametersAvailableInNestedScope.ts", - "./testTs/test/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints2.ts", - "./testTs/test/types/spread/spreadExcessProperty.ts", - "./testTs/test/types/spread/spreadOverwritesProperty.ts", - "./testTs/test/types/spread/spreadUnion4.ts", - "./testTs/test/types/spread/spreadUnion.ts", - "./testTs/test/types/spread/spreadContextualTypedBindingPattern.ts", - "./testTs/test/types/spread/objectSpreadRepeatedNullCheckPerf.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/recursiveTypeInGenericConstraint.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/nominalSubtypeCheckOfTypeParameter.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/infiniteExpansionThroughTypeInference.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/arrayLiteralsWithRecursiveGenerics.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/recursiveTypesUsedAsFunctionParameters.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/infiniteExpansionThroughInstantiation2.ts", - "./testTs/test/types/typeRelationships/recursiveTypes/nominalSubtypeCheckOfTypeParameter2.ts", - "./testTs/test/types/typeRelationships/widenedTypes/strictNullChecksNoWidening.ts", - "./testTs/test/types/typeRelationships/widenedTypes/objectLiteralWidened.ts", - "./testTs/test/types/typeRelationships/widenedTypes/initializersWidened.ts", - "./testTs/test/types/typeRelationships/widenedTypes/arrayLiteralWidened.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality3.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/nullIsSubtypeOfEverythingButUndefined.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/undefinedIsSubtypeOfEverything.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypesOfAny.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithConstraints2.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures3.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures3.ts", - "./testTs/test/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality4.ts", - "./testTs/test/types/typeRelationships/comparable/optionalProperties01.ts", - "./testTs/test/types/typeRelationships/comparable/switchCaseWithIntersectionTypes01.ts", - "./testTs/test/types/typeRelationships/comparable/independentPropertyVariance.ts", - "./testTs/test/types/typeRelationships/comparable/equalityWithUnionTypes01.ts", - "./testTs/test/types/typeRelationships/comparable/optionalProperties02.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignatures.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignatures.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentity.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithComplexConstraints.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignatures2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesDifferingParamCounts.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams3.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesWithOverloads.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints3.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterNames.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithOptionality.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentity2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPublics.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignatures2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/typeParametersAreIdenticalToThemselves.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesDifferingParamCounts2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/primtiveTypesAreIdentical.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignaturesDifferingParamCounts.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignatures2.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterNames.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterCounts.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints3.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignatures.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams3.ts", - "./testTs/test/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType.ts", - "./testTs/test/types/typeRelationships/bestCommonType/arrayLiteralWithMultipleBestCommonTypes.ts", - "./testTs/test/types/typeRelationships/bestCommonType/heterogeneousArrayLiterals.ts", - "./testTs/test/types/typeRelationships/instanceOf/narrowingConstrainedTypeVariable.ts", - "./testTs/test/types/typeRelationships/typeInference/unionAndIntersectionInference2.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithOverloadedFunctionTypedArguments.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallTypeArgumentInference.ts", - "./testTs/test/types/typeRelationships/typeInference/genericContextualTypes1.ts", - "./testTs/test/types/typeRelationships/typeInference/genericFunctionParameters.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndIndexersErrors.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndIndexers.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndNumericIndexer.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithArrayLiteralArgs.ts", - "./testTs/test/types/typeRelationships/typeInference/genericClassWithObjectTypeArgsAndConstraints.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithConstraintsTypeArgumentInference.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments3.ts", - "./testTs/test/types/typeRelationships/typeInference/keyofInferenceLowerPriorityThanReturn.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndStringIndexer.ts", - "./testTs/test/types/typeRelationships/typeInference/keyofInferenceIntersectsResults.ts", - "./testTs/test/types/typeRelationships/typeInference/unionAndIntersectionInference1.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithOverloadedConstructorTypedArguments.ts", - "./testTs/test/types/typeRelationships/typeInference/bivariantInferences.ts", - "./testTs/test/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints.ts", - "./testTs/test/types/typeRelationships/typeInference/discriminatedUnionInference.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/anyAssignableToEveryType.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/nullAssignableToEveryType.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/numberAssignableToEnum.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/undefinedAssignableToEveryType.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures3.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/anyAssignabilityInInheritance.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers3.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/everyTypeAssignableToAny.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithWithGenericConstructSignatures.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/anyAssignableToEveryType2.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures.ts", - "./testTs/test/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersNumericNames.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesOverloads03.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesOverloads04.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesInUnionTypes04.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypeAssertion01.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesAsTags03.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesAsTags02.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesAsTags01.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesAndTuples01.ts", - "./testTs/test/types/stringLiteral/stringLiteralMatchedInSwitch01.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesOverloads01.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesAndParenthesizedExpressions01.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesOverloads02.ts", - "./testTs/test/types/stringLiteral/stringLiteralTypesWithTemplateStrings01.ts", - "./testTs/test/types/intersection/operatorsAndIntersectionTypes.ts", - "./testTs/test/types/intersection/intersectionTypeMembers.ts", - "./testTs/test/types/intersection/intersectionOfUnionNarrowing.ts", - "./testTs/test/types/intersection/intersectionTypeInference2.ts", - "./testTs/test/types/intersection/intersectionMemberOfUnionNarrowsCorrectly.ts", - "./testTs/test/types/intersection/intersectionTypeOverloading.ts", - "./testTs/test/types/intersection/intersectionTypeEquivalence.ts", - "./testTs/test/types/intersection/intersectionTypeInference3.ts", - "./testTs/test/types/intersection/contextualIntersectionType.ts", - "./testTs/test/types/intersection/intersectionThisTypes.ts", - "./testTs/test/types/intersection/intersectionOfUnionOfUnitTypes.ts", - "./testTs/test/types/rest/genericRestParameters2.ts", - "./testTs/test/types/rest/objectRestParameter.ts", - "./testTs/test/types/rest/objectRestForOf.ts", - "./testTs/test/types/rest/objectRestCatchES5.ts", - "./testTs/test/types/rest/objectRestReadonly.ts", - "./testTs/test/types/rest/objectRestAssignment.ts", - "./testTs/test/types/rest/objectRest2.ts", - "./testTs/test/internalModules/codeGeneration/nameCollision.ts", - "./testTs/test/internalModules/codeGeneration/importStatements.ts", - "./testTs/test/internalModules/codeGeneration/exportCodeGen.ts", - "./testTs/test/internalModules/DeclarationMerging/TwoInternalModulesWithTheSameNameAndDifferentCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/TwoInternalModulesWithTheSameNameAndSameCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.ts", - "./testTs/test/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedModulesOfTheSameName.ts", - "./testTs/test/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStringIndexerAndExportedFunctionWithTypeIncompatibleWithIndexer.ts", - "./testTs/test/internalModules/DeclarationMerging/AmbientModuleAndNonAmbientClassWithSameNameAndCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/FunctionAndModuleWithSameNameAndDifferentCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/AmbientModuleAndAmbientFunctionWithTheSameNameAndCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedAndNonExportedClassesOfTheSameName.ts", - "./testTs/test/internalModules/DeclarationMerging/EnumAndModuleWithSameNameAndCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/AmbientModuleAndAmbientWithSameNameAndCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedInterfacesOfTheSameName.ts", - "./testTs/test/internalModules/DeclarationMerging/ModuleAndEnumWithSameNameAndCommonRoot.ts", - "./testTs/test/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedAndNonExportedInterfacesOfTheSameName.ts", - "./testTs/test/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAName.ts", - "./testTs/test/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedAndNonExportedLocalVarsOfTheSameName.ts", - "./testTs/test/internalModules/importDeclarations/exportImportAlias.ts", - "./testTs/test/internalModules/importDeclarations/importAliasIdentifiers.ts", - "./testTs/test/internalModules/exportDeclarations/ExportInterfaceWithInaccessibleTypeInIndexerTypeAnnotations.ts", - "./testTs/test/internalModules/exportDeclarations/ExportVariableWithAccessibleTypeInTypeAnnotation.ts", - "./testTs/test/internalModules/exportDeclarations/ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInMemberTypeAnnotations.ts", - "./testTs/test/internalModules/exportDeclarations/ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.ts", - "./testTs/test/internalModules/exportDeclarations/ExportVariableWithInaccessibleTypeInTypeAnnotation.ts", - "./testTs/test/internalModules/exportDeclarations/ExportFunctionWithInaccessibleTypesInParameterTypeAnnotation.ts", - "./testTs/test/internalModules/exportDeclarations/ExportFunctionWithInaccessibleTypesInReturnTypeAnnotation.ts", - "./testTs/test/internalModules/exportDeclarations/ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInNestedMemberTypeAnnotations.ts", - "./testTs/test/internalModules/exportDeclarations/ExportModuleWithAccessibleTypesOnItsExportedMembers.ts", - "./testTs/test/internalModules/exportDeclarations/ExportClassWithInaccessibleTypeInTypeParameterConstraint.ts", - "./testTs/test/internalModules/exportDeclarations/ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.ts", - "./testTs/test/internalModules/exportDeclarations/ExportFunctionWithAccessibleTypesInParameterAndReturnTypeAnnotation.ts", - "./testTs/test/internalModules/exportDeclarations/ExportClassWhichExtendsInterfaceWithInaccessibleType.ts", - "./testTs/test/internalModules/exportDeclarations/ExportInterfaceWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.ts", - "./testTs/test/internalModules/exportDeclarations/ExportInterfaceWithInaccessibleTypeInTypeParameterConstraint.ts", - "./testTs/test/internalModules/exportDeclarations/ExportVariableOfGenericTypeWithInaccessibleTypeAsTypeArgument.ts", - "./testTs/test/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace03.ts", - "./testTs/test/internalModules/moduleDeclarations/nestedModules.ts", - "./testTs/test/internalModules/moduleDeclarations/nonInstantiatedModule.ts", - "./testTs/test/internalModules/moduleDeclarations/instantiatedModule.ts", - "./testTs/test/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace05.ts", - "./testTs/test/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace01.ts", - "./testTs/test/internalModules/moduleBody/moduleWithStatementsOfEveryKind.ts", - "./testTs/test/classes/mixinClassesAnnotated.ts", - "./testTs/test/classes/mixinClassesMembers.ts", - "./testTs/test/classes/mixinClassesAnonymous.ts", - "./testTs/test/classes/classExpression.ts", - "./testTs/test/classes/classExpressions/classWithStaticFieldInParameterBindingPattern.ts", - "./testTs/test/classes/classExpressions/classWithStaticFieldInParameterInitializer.ts", - "./testTs/test/classes/classExpressions/genericClassExpressionInFunction.ts", - "./testTs/test/classes/classExpressions/classExpressionLoop.ts", - "./testTs/test/classes/classExpressions/classExpression5.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock12.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock24.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock5.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock15.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock18.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock14.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock27.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock13.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock11.ts", - "./testTs/test/classes/classStaticBlock/classStaticBlock17.ts", - "./testTs/test/classes/propertyMemberDeclarations/thisInInstanceMemberInitializer.ts", - "./testTs/test/classes/propertyMemberDeclarations/abstractProperty.ts", - "./testTs/test/classes/propertyMemberDeclarations/instanceMemberInitialization.ts", - "./testTs/test/classes/propertyMemberDeclarations/instanceMemberWithComputedPropertyName2.ts", - "./testTs/test/classes/propertyMemberDeclarations/staticMemberInitialization.ts", - "./testTs/test/classes/propertyMemberDeclarations/instanceMemberWithComputedPropertyName.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPublicOverloads.ts", - "./testTs/test/classes/propertyMemberDeclarations/memberFunctionDeclarations/typeOfThisInMemberFunctions.ts", - "./testTs/test/classes/members/constructorFunctionTypes/classWithNoConstructorOrBaseClass.ts", - "./testTs/test/classes/members/constructorFunctionTypes/constructorHasPrototypeProperty.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers2.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers1.ts", - "./testTs/test/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers2.ts", - "./testTs/test/classes/members/inheritanceAndOverriding/derivedClassOverridesWithoutSubtype.ts", - "./testTs/test/classes/members/classTypes/indexersInClassType.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticFieldUnaryMutation.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticMethodCallExpression.ts", - "./testTs/test/classes/members/privateNames/privateNameComputedPropertyName1.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticFieldInitializer.ts", - "./testTs/test/classes/members/privateNames/privateNameFieldInitializer.ts", - "./testTs/test/classes/members/privateNames/privateNameFieldAccess.ts", - "./testTs/test/classes/members/privateNames/privateNameDeclaration.ts", - "./testTs/test/classes/members/privateNames/privateNameFieldCallExpression.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticAndStaticInitializer.ts", - "./testTs/test/classes/members/privateNames/privateNameFieldDestructuredBinding.ts", - "./testTs/test/classes/members/privateNames/privateNameInLhsReceiverExpression.ts", - "./testTs/test/classes/members/privateNames/privateNameComputedPropertyName4.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticMethodInStaticFieldInit.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticFieldClassExpression.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticAccessorsCallExpression.ts", - "./testTs/test/classes/members/privateNames/privateNameClassExpressionLoop.ts", - "./testTs/test/classes/members/privateNames/privateNameFieldUnaryMutation.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticFieldAssignment.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticFieldNoInitializer.ts", - "./testTs/test/classes/members/privateNames/privateNameConstructorSignature.ts", - "./testTs/test/classes/members/privateNames/privateNameComputedPropertyName2.ts", - "./testTs/test/classes/members/privateNames/privateNameAndStaticInitializer.ts", - "./testTs/test/classes/members/privateNames/privateNameComputedPropertyName3.ts", - "./testTs/test/classes/members/privateNames/privateNameNestedClassNameConflict.ts", - "./testTs/test/classes/members/privateNames/privateNameAccessorsCallExpression.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticFieldDestructuredBinding.ts", - "./testTs/test/classes/members/privateNames/privateNameMethodInStaticFieldInit.ts", - "./testTs/test/classes/members/privateNames/privateStaticNameShadowing.ts", - "./testTs/test/classes/members/privateNames/privateNameMethodCallExpression.ts", - "./testTs/test/classes/members/privateNames/privateNameFieldClassExpression.ts", - "./testTs/test/classes/members/privateNames/privateNameStaticFieldCallExpression.ts", - "./testTs/test/classes/members/privateNames/privateNameFieldAssignment.ts", - "./testTs/test/classes/constructorDeclarations/classConstructorAccessibility4.ts", - "./testTs/test/classes/constructorDeclarations/constructorWithExpressionLessReturn.ts", - "./testTs/test/classes/constructorDeclarations/constructorParameters/constructorImplementationWithDefaultValues.ts", - "./testTs/test/classes/constructorDeclarations/constructorParameters/constructorOverloadsWithOptionalParameters.ts", - "./testTs/test/classes/constructorDeclarations/superCalls/emitStatementsBeforeSuperCall.ts", - "./testTs/test/classes/constructorDeclarations/superCalls/emitStatementsBeforeSuperCallWithDefineFields.ts", - "./testTs/test/classes/staticIndexSignature/staticIndexSignature6.ts", - "./testTs/test/classes/classDeclarations/mergeClassInterfaceAndModule.ts", - "./testTs/test/classes/classDeclarations/classDeclarationLoop.ts", - "./testTs/test/classes/classDeclarations/classExtendingBuiltinType.ts", - "./testTs/test/classes/classDeclarations/classAndInterfaceWithSameName.ts", - "./testTs/test/classes/classDeclarations/mergedInheritedClassInterface.ts", - "./testTs/test/classes/classDeclarations/classAndInterfaceMerge.d.ts", - "./testTs/test/classes/classDeclarations/modifierOnClassDeclarationMemberInFunction.ts", - "./testTs/test/classes/classDeclarations/mergedClassInterface.ts", - "./testTs/test/classes/classDeclarations/classExtendingNull.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/classExtendingClass.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/constructorFunctionTypeIsAssignableToBaseType.ts", - "./testTs/test/classes/classDeclarations/classHeritageSpecification/constructorFunctionTypeIsAssignableToBaseType2.ts", - "./testTs/test/jsx/jsxParsingError3.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty11.tsx", - "./testTs/test/jsx/tsxSpreadChildrenInvalidType.tsx", - "./testTs/test/jsx/tsxEmit2.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution7.tsx", - "./testTs/test/jsx/tsxGenericAttributesType1.tsx", - "./testTs/test/jsx/tsxElementResolution15.tsx", - "./testTs/test/jsx/jsxParsingError4.tsx", - "./testTs/test/jsx/tsxDefaultAttributesResolution2.tsx", - "./testTs/test/jsx/tsxElementResolution1.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution17.tsx", - "./testTs/test/jsx/tsxAttributeResolution4.tsx", - "./testTs/test/jsx/jsxParsingError2.tsx", - "./testTs/test/jsx/tsxReactComponentWithDefaultTypeParameter2.tsx", - "./testTs/test/jsx/tsxGenericAttributesType6.tsx", - "./testTs/test/jsx/tsxErrorRecovery2.tsx", - "./testTs/test/jsx/tsxUnionElementType1.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution5.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponents1.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution13.tsx", - "./testTs/test/jsx/tsxElementResolution18.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution16.tsx", - "./testTs/test/jsx/tsxFragmentReactEmit.tsx", - "./testTs/test/jsx/jsxReactTestSuite.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution14.tsx", - "./testTs/test/jsx/tsxStatelessFunctionComponents2.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution11.tsx", - "./testTs/test/jsx/tsxFragmentErrors.tsx", - "./testTs/test/jsx/tsxGenericAttributesType9.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution8.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution6.tsx", - "./testTs/test/jsx/tsxDynamicTagName8.tsx", - "./testTs/test/jsx/tsxEmit3.tsx", - "./testTs/test/jsx/tsxIntrinsicAttributeErrors.tsx", - "./testTs/test/jsx/tsxDynamicTagName7.tsx", - "./testTs/test/jsx/tsxDynamicTagName9.tsx", - "./testTs/test/jsx/tsxElementResolution11.tsx", - "./testTs/test/jsx/tsxElementResolution12.tsx", - "./testTs/test/jsx/jsxEsprimaFbTestSuite.tsx", - "./testTs/test/jsx/jsxCheckJsxNoTypeArgumentsAllowed.tsx", - "./testTs/test/jsx/tsxAttributeResolution1.tsx", - "./testTs/test/jsx/tsxUnionElementType6.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty6.tsx", - "./testTs/test/jsx/tsxReactEmitNesting.tsx", - "./testTs/test/jsx/tsxNoJsx.tsx", - "./testTs/test/jsx/jsxSpreadOverwritesAttributeStrict.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty4.tsx", - "./testTs/test/jsx/tsxUnionTypeComponent1.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution10.tsx", - "./testTs/test/jsx/tsxElementResolution2.tsx", - "./testTs/test/jsx/tsxAttributeResolution16.tsx", - "./testTs/test/jsx/tsxDynamicTagName2.tsx", - "./testTs/test/jsx/checkJsxGenericTagHasCorrectInferences.tsx", - "./testTs/test/jsx/tsxUnionTypeComponent2.tsx", - "./testTs/test/jsx/tsxDynamicTagName4.tsx", - "./testTs/test/jsx/tsxElementResolution16.tsx", - "./testTs/test/jsx/tsxReactEmitWhitespace.tsx", - "./testTs/test/jsx/tsxElementResolution3.tsx", - "./testTs/test/jsx/jsxInvalidEsprimaTestSuite.tsx", - "./testTs/test/jsx/tsxUnionElementType2.tsx", - "./testTs/test/jsx/tsxDefaultAttributesResolution1.tsx", - "./testTs/test/jsx/tsxUnionElementType4.tsx", - "./testTs/test/jsx/checkJsxChildrenCanBeTupleType.tsx", - "./testTs/test/jsx/tsxParseTests1.tsx", - "./testTs/test/jsx/tsxAttributeResolution12.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty7.tsx", - "./testTs/test/jsx/tsxTypeArgumentsJsxPreserveOutput.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution2.tsx", - "./testTs/test/jsx/tsxInArrowFunction.tsx", - "./testTs/test/jsx/tsxSpreadChildren.tsx", - "./testTs/test/jsx/tsxElementResolution8.tsx", - "./testTs/test/jsx/unicodeEscapesInJsxtags.tsx", - "./testTs/test/jsx/tsxElementResolution14.tsx", - "./testTs/test/jsx/tsxAttributeResolution7.tsx", - "./testTs/test/jsx/tsxAttributeErrors.tsx", - "./testTs/test/jsx/tsxCorrectlyParseLessThanComparison1.tsx", - "./testTs/test/jsx/tsxAttributeResolution2.tsx", - "./testTs/test/jsx/tsxAttributeResolution.tsx", - "./testTs/test/jsx/tsxGenericArrowFunctionParsing.tsx", - "./testTs/test/jsx/tsxGenericAttributesType4.tsx", - "./testTs/test/jsx/jsxAndTypeAssertion.tsx", - "./testTs/test/jsx/tsxElementResolution5.tsx", - "./testTs/test/jsx/jsxParsingError1.tsx", - "./testTs/test/jsx/tsxParseTests2.tsx", - "./testTs/test/jsx/tsxTypeErrors.tsx", - "./testTs/test/jsx/tsxAttributeResolution5.tsx", - "./testTs/test/jsx/tsxReactEmitWhitespace2.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty15.tsx", - "./testTs/test/jsx/tsxGenericAttributesType5.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty10.tsx", - "./testTs/test/jsx/tsxElementResolution10.tsx", - "./testTs/test/jsx/tsxUnionElementType5.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution9.tsx", - "./testTs/test/jsx/tsxReactEmit3.tsx", - "./testTs/test/jsx/checkJsxNamespaceNamesQuestionableForms.tsx", - "./testTs/test/jsx/tsxElementResolution4.tsx", - "./testTs/test/jsx/tsxGenericAttributesType7.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty12.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution15.tsx", - "./testTs/test/jsx/tsxElementResolution13.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution3.tsx", - "./testTs/test/jsx/tsxReactEmit4.tsx", - "./testTs/test/jsx/tsxDynamicTagName6.tsx", - "./testTs/test/jsx/tsxElementResolution.tsx", - "./testTs/test/jsx/tsxAttributeResolution3.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution4.tsx", - "./testTs/test/jsx/tsxTypeArgumentResolution.tsx", - "./testTs/test/jsx/tsxAttributeResolution15.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty5.tsx", - "./testTs/test/jsx/checkJsxIntersectionElementPropsType.tsx", - "./testTs/test/jsx/tsxDefaultAttributesResolution3.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty2.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty14.tsx", - "./testTs/test/jsx/tsxAttributeResolution6.tsx", - "./testTs/test/jsx/checkJsxSubtleSkipContextSensitiveBug.tsx", - "./testTs/test/jsx/tsxReactComponentWithDefaultTypeParameter1.tsx", - "./testTs/test/jsx/tsxEmit1.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty9.tsx", - "./testTs/test/jsx/tsxLibraryManagedAttributes.tsx", - "./testTs/test/jsx/tsxErrorRecovery1.tsx", - "./testTs/test/jsx/tsxElementResolution7.tsx", - "./testTs/test/jsx/tsxOpeningClosingNames.tsx", - "./testTs/test/jsx/tsxElementResolution9.tsx", - "./testTs/test/jsx/tsxDynamicTagName5.tsx", - "./testTs/test/jsx/commentEmittingInPreserveJsx1.tsx", - "./testTs/test/jsx/tsxGenericAttributesType2.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution1.tsx", - "./testTs/test/jsx/tsxElementResolution6.tsx", - "./testTs/test/jsx/tsxReactEmit2.tsx", - "./testTs/test/jsx/tsxReactComponentWithDefaultTypeParameter3.tsx", - "./testTs/test/jsx/tsxFragmentPreserveEmit.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty8.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty1.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty3.tsx", - "./testTs/test/jsx/tsxDynamicTagName1.tsx", - "./testTs/test/jsx/checkJsxChildrenProperty13.tsx", - "./testTs/test/jsx/tsxReactEmit1.tsx", - "./testTs/test/jsx/tsxAttributeInvalidNames.tsx", - "./testTs/test/jsx/tsxSpreadAttributesResolution12.tsx", - "./testTs/test/jsx/tsxGenericAttributesType8.tsx", - "./testTs/test/jsx/checkJsxUnionSFXContextualTypeInferredCorrectly.tsx", - "./testTs/test/jsx/tsxAttributeResolution13.tsx", - "./testTs/test/jsx/tsxUnionElementType3.tsx", - "./testTs/test/jsx/tsxReactEmitEntities.tsx", - "./testTs/test/jsx/tsxErrorRecovery3.tsx", - "./testTs/test/jsx/tsxGenericAttributesType3.tsx", - "./testTs/test/jsx/tsxAttributeResolution8.tsx", - "./testTs/test/jsx/tsxDynamicTagName3.tsx", - "./testTs/test/jsx/inline/inlineJsxFactoryDeclarationsLocalTypes.tsx", - "./testTs/test/jsx/inline/inlineJsxAndJsxFragPragma.tsx", - "./testTs/test/jsx/inline/inlineJsxFactoryOverridesCompilerOption.tsx", - "./testTs/test/jsx/inline/inlineJsxFactoryDeclarations.tsx", - "./testTs/test/jsx/inline/inlineJsxAndJsxFragPragmaOverridesCompilerOptions.tsx", - "./testTs/test/jsx/inline/inlineJsxFactoryWithFragmentIsError.tsx", - "./testTs/test/jsx/inline/inlineJsxFactoryLocalTypeGlobalFallback.tsx", - "./testTs/test/references/library-reference-6.ts", - "./testTs/test/references/library-reference-scoped-packages.ts", - "./testTs/test/references/library-reference-14.ts", - "./testTs/test/references/library-reference-1.ts", - "./testTs/test/references/library-reference-7.ts", - "./testTs/test/references/library-reference-3.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithEnumUnion.ts", - "./testTs/test/es7/exponentiationOperator/compoundExponentiationAssignmentLHSIsReference.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithEnum.ts", - "./testTs/test/es7/exponentiationOperator/exponentiationOperatorWithAnyAndNumber.ts", - "./testTs/test/ambient/ambientEnumDeclaration1.ts", - "./testTs/test/ambient/ambientEnumDeclaration2.ts", - "./testTs/test/ambient/ambientShorthand_declarationEmit.ts", - "./testTs/test/externalModules/globalAugmentationModuleResolution.ts", - "./testTs/test/externalModules/esnext/esnextmodulekindWithES2015Target.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES2015Target.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target4.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target7.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target2.ts", - "./testTs/test/externalModules/es6/es6modulekindExportClassNameWithObject.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target12.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target5.ts", - "./testTs/test/externalModules/es6/es6modulekindWithES5Target8.ts", - "./testTs/test/externalModules/typeOnly/preserveValueImports_module.ts", - "./testTs/test/es2021/logicalAssignment/logicalAssignment1.ts", - "./testTs/test/es2021/logicalAssignment/logicalAssignment8.ts", - "./testTs/test/es2021/logicalAssignment/logicalAssignment7.ts", - "./testTs/test/es2021/logicalAssignment/logicalAssignment3.ts", - "./testTs/test/es2021/logicalAssignment/logicalAssignment10.ts", - "./testTs/test/es2021/logicalAssignment/logicalAssignment6.ts", - "./testTs/test/es2021/logicalAssignment/logicalAssignment2.ts", - "./testTs/test/es2021/logicalAssignment/logicalAssignment9.ts", - "./testTs/test/es2021/logicalAssignment/logicalAssignment4.ts", - "./testTs/test/async/es6/asyncWithVarShadowing_es6.ts", - "./testTs/test/jsdoc/moduleExportsElementAccessAssignment.ts", - "./testTs/test/jsdoc/jsdocTwoLineTypedef.ts", - "./testTs/test/jsdoc/tsNoCheckForTypescript.ts", - "./testTs/test/jsdoc/typedefTagNested.ts", - "./testTs/test/jsdoc/jsdocVariadicType.ts", - "./testTs/test/jsdoc/enumTagUseBeforeDefCrash.ts", - "./testTs/test/jsdoc/paramTagOnCallExpression.ts", - "./testTs/test/jsdoc/checkJsdocParamOnVariableDeclaredFunctionExpression.ts", - "./testTs/test/jsdoc/typeTagOnPropertyAssignment.ts", - "./testTs/test/jsdoc/jsdocImportTypeReferenceToESModule.ts", - "./testTs/test/jsdoc/jsdocTypeFromChainedAssignment3.ts", - "./testTs/test/jsdoc/extendsTag1.ts", - "./testTs/test/jsdoc/jsdocTemplateTag2.ts", - "./testTs/test/jsdoc/seeTag2.ts", - "./testTs/test/jsdoc/jsdocBindingInUnreachableCode.ts", - "./testTs/test/jsdoc/jsdocParseHigherOrderFunction.ts", - "./testTs/test/jsdoc/jsdocImportTypeReferenceToStringLiteral.ts", - "./testTs/test/jsdoc/paramTagTypeResolution.ts", - "./testTs/test/jsdoc/checkJsdocTypeTag3.ts", - "./testTs/test/jsdoc/checkJsdocTypeTagOnObjectProperty1.ts", - "./testTs/test/jsdoc/jsdocImportTypeReferenceToClassAlias.ts", - "./testTs/test/jsdoc/enumTagOnExports.ts", - "./testTs/test/jsdoc/jsdocTypeDefAtStartOfFile.ts", - "./testTs/test/jsdoc/jsdocTypeReferenceExports.ts", - "./testTs/test/jsdoc/callbackCrossModule.ts", - "./testTs/test/jsdoc/callbackTag3.ts", - "./testTs/test/jsdoc/jsdocParseParenthesizedJSDocParameter.ts", - "./testTs/test/jsdoc/callbackTag1.ts", - "./testTs/test/jsdoc/instantiateTemplateTagTypeParameterOnVariableStatement.ts", - "./testTs/test/jsdoc/seeTag1.ts", - "./testTs/test/jsdoc/enumTagOnExports2.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportedClassAliases.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsFunctions.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsReusesExistingNodesMappingJSDocTypes.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsSubclassWithExplicitNoArgumentConstructor.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsUniqueSymbolUsage.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsTypeAliases.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsFunctionWithDefaultAssignedMember.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportDefinePropertyEmit.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsFunctionsCjs.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsTypedefDescriptionsPreserved.ts", - "./testTs/test/jsdoc/declarations/jsDeclarationsExportDoubleAssignmentInClosure.ts", - "./testTs/test/override/override18.ts", - "./testTs/test/override/override_js1.ts", - "./testTs/test/override/override16.ts", - "./testTs/test/es2019/globalThisTypeIndexAccess.ts", - "./testTs/test/directives/multiline.tsx", - "./testTs/test/directives/ts-expect-error-nocheck.ts", - "./testTs/test/expressions/elementAccess/stringEnumInElementAccess01.ts", - "./testTs/test/expressions/elementAccess/letIdentifierInElementAccess01.ts", - "./testTs/test/expressions/conditonalOperator/conditionalOperatorConditoinIsStringType.ts", - "./testTs/test/expressions/conditonalOperator/conditionalOperatorConditionIsBooleanType.ts", - "./testTs/test/expressions/conditonalOperator/conditionalOperatorConditoinIsAnyType.ts", - "./testTs/test/expressions/conditonalOperator/conditionalOperatorConditionIsNumberType.ts", - "./testTs/test/expressions/typeGuards/typeGuardNarrowsPrimitiveIntersection.ts", - "./testTs/test/expressions/typeGuards/typeGuardNarrowsToLiteralType.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInForStatement.ts", - "./testTs/test/expressions/typeGuards/typeGuardNarrowsToLiteralTypeUnion.ts", - "./testTs/test/expressions/typeGuards/typeGuardFunction.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInConditionalExpression.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInFunctionAndModuleBlock.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormTypeOfNumber.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInModule.ts", - "./testTs/test/expressions/typeGuards/typeGuardNesting.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormIsTypeOnInterfaces.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormInstanceOfOnInterface.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormExpr1AndExpr2.ts", - "./testTs/test/expressions/typeGuards/typeGuardRedundancy.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInRightOperandOfOrOrOperator.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormFunctionEquality.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInFunction.ts", - "./testTs/test/expressions/typeGuards/typeGuardEnums.ts", - "./testTs/test/expressions/typeGuards/typeGuardFunctionOfFormThis.ts", - "./testTs/test/expressions/typeGuards/typePredicateASI.ts", - "./testTs/test/expressions/typeGuards/typeGuardTautologicalConsistiency.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInDoStatement.ts", - "./testTs/test/expressions/typeGuards/TypeGuardWithEnumUnion.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormTypeOfIsOrderIndependent.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFromPropNameInUnionType.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInGlobal.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInWhileStatement.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInClassMethods.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormTypeOfFunction.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormTypeOfPrimitiveSubtype.ts", - "./testTs/test/expressions/typeGuards/typeGuardTypeOfUndefined.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormExpr1OrExpr2.ts", - "./testTs/test/expressions/typeGuards/typeGuardsInRightOperandOfAndAndOperator.ts", - "./testTs/test/expressions/typeGuards/typeGuardOfFormNotExpr.ts", - "./testTs/test/expressions/typeGuards/typeGuardsOnClassProperty.ts", - "./testTs/test/expressions/typeGuards/typeGuardIntersectionTypes.ts", - "./testTs/test/expressions/asOperator/asOperator3.ts", - "./testTs/test/expressions/asOperator/asOpEmitParens.ts", - "./testTs/test/expressions/asOperator/asOperator1.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInAsyncGenerator.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator3.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator10.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterInitializer.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator9.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator7.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator12.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator_not_strict.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator1.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterBindingPattern.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator2.ts", - "./testTs/test/expressions/nullishCoalescingOperator/nullishCoalescingOperator8.ts", - "./testTs/test/expressions/binaryOperators/additionOperator/additionOperatorWithAnyAndEveryType.ts", - "./testTs/test/expressions/binaryOperators/additionOperator/additionOperatorWithNumberAndEnum.ts", - "./testTs/test/expressions/binaryOperators/additionOperator/additionOperatorWithStringAndEveryType.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithOneOperandIsUndefined.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithOneOperandIsAny.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithTwoOperandsAreAny.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnProperty.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIdenticalObjects.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNumericLiteral.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnOptionalProperty.ts", - "./testTs/test/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeEnumAndNumber.ts", - "./testTs/test/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithLHSIsTypeParameter.ts", - "./testTs/test/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithAny.ts", - "./testTs/test/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithRHSIsSubtypeOfFunction.ts", - "./testTs/test/expressions/binaryOperators/logicalOrOperator/logicalOrExpressionIsNotContextuallyTyped.ts", - "./testTs/test/expressions/binaryOperators/logicalOrOperator/logicalOrOperatorWithTypeParameters.ts", - "./testTs/test/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithEnumUnion.ts", - "./testTs/test/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithEnum.ts", - "./testTs/test/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithAnyAndNumber.ts", - "./testTs/test/expressions/binaryOperators/inOperator/inOperatorWithValidOperands.ts", - "./testTs/test/expressions/arrayLiterals/arrayLiterals2ES5.ts", - "./testTs/test/expressions/arrayLiterals/arrayLiteralInference.ts", - "./testTs/test/expressions/assignmentOperator/assignmentGenericLookupTypeNarrowing.ts", - "./testTs/test/expressions/assignmentOperator/compoundAssignmentLHSIsReference.ts", - "./testTs/test/expressions/assignmentOperator/assignmentLHSIsReference.ts", - "./testTs/test/expressions/assignmentOperator/assignmentTypeNarrowing.ts", - "./testTs/test/expressions/unaryOperators/decrementOperator/decrementOperatorWithAnyOtherType.ts", - "./testTs/test/expressions/unaryOperators/decrementOperator/decrementOperatorWithNumberType.ts", - "./testTs/test/expressions/unaryOperators/incrementOperator/incrementOperatorWithNumberType.ts", - "./testTs/test/expressions/unaryOperators/incrementOperator/incrementOperatorWithAnyOtherType.ts", - "./testTs/test/expressions/unaryOperators/voidOperator/voidOperatorWithNumberType.ts", - "./testTs/test/expressions/unaryOperators/voidOperator/voidOperatorWithEnumType.ts", - "./testTs/test/expressions/unaryOperators/voidOperator/voidOperatorWithBooleanType.ts", - "./testTs/test/expressions/unaryOperators/voidOperator/voidOperatorWithStringType.ts", - "./testTs/test/expressions/optionalChaining/optionalChainingInParameterInitializer.ts", - "./testTs/test/expressions/optionalChaining/optionalChainingInference.ts", - "./testTs/test/expressions/optionalChaining/optionalChainingInParameterBindingPattern.ts", - "./testTs/test/expressions/optionalChaining/propertyAccessChain/propertyAccessChain.2.ts", - "./testTs/test/expressions/optionalChaining/propertyAccessChain/propertyAccessChain.ts", - "./testTs/test/expressions/optionalChaining/callChain/callChain.2.ts", - "./testTs/test/expressions/optionalChaining/callChain/parentheses.ts", - "./testTs/test/expressions/optionalChaining/callChain/callChainInference.ts", - "./testTs/test/expressions/optionalChaining/callChain/callChain.ts", - "./testTs/test/expressions/optionalChaining/elementAccessChain/elementAccessChain.2.ts", - "./testTs/test/expressions/optionalChaining/elementAccessChain/elementAccessChain.ts", - "./testTs/test/expressions/functionCalls/typeArgumentInferenceTransitiveConstraints.ts", - "./testTs/test/expressions/functionCalls/callWithSpread.ts", - "./testTs/test/expressions/functions/typeOfThisInFunctionExpression.ts", - "./testTs/test/expressions/functions/contextuallyTypedFunctionExpressionsAndReturnAnnotations.ts", - "./testTs/test/expressions/functions/arrowFunctionExpressions.ts", - "./testTs/test/expressions/functions/voidParamAssignmentCompatibility.ts", - "./testTs/test/expressions/functions/contextuallyTypedIife.ts", - "./testTs/test/expressions/superCalls/superCalls.ts", - "./testTs/test/expressions/newOperator/newOperatorConformance.ts", - "./testTs/test/expressions/contextualTyping/functionExpressionContextualTyping1.ts", - "./testTs/test/expressions/contextualTyping/superCallParameterContextualTyping1.ts", - "./testTs/test/expressions/contextualTyping/superCallParameterContextualTyping3.ts", - "./testTs/test/expressions/contextualTyping/generatedContextualTyping.ts", - "./testTs/test/expressions/contextualTyping/functionExpressionContextualTyping3.ts", - "./testTs/test/emitter/es2015/asyncGenerators/emitter.asyncGenerators.functionExpressions.es2015.ts", - "./testTs/test/emitter/es2015/asyncGenerators/emitter.asyncGenerators.classMethods.es2015.ts", - "./testTs/test/emitter/es2015/asyncGenerators/emitter.asyncGenerators.objectLiteralMethods.es2015.ts", - "./testTs/test/emitter/es2015/asyncGenerators/emitter.asyncGenerators.functionDeclarations.es2015.ts", - "./testTs/test/declarationEmit/classDoesNotDependOnPrivateMember.ts", - "./testTs/test/interfaces/declarationMerging/twoMergedInterfacesWithDifferingOverloads2.ts", - "./testTs/test/interfaces/declarationMerging/mergedInterfacesWithConflictingPropertyNames2.ts", - "./testTs/test/interfaces/declarationMerging/mergedInterfacesWithIndexers.ts", - "./testTs/test/interfaces/declarationMerging/mergeTwoInterfaces2.ts", - "./testTs/test/interfaces/declarationMerging/twoMergedInterfacesWithDifferingOverloads.ts", - "./testTs/test/interfaces/declarationMerging/mergeTwoInterfaces.ts", - "./testTs/test/interfaces/declarationMerging/mergeThreeInterfaces.ts", - "./testTs/test/interfaces/declarationMerging/genericAndNonGenericInterfaceWithTheSameName2.ts", - "./testTs/test/interfaces/declarationMerging/mergedInterfacesWithMultipleBases.ts", - "./testTs/test/interfaces/declarationMerging/mergeThreeInterfaces2.ts", - "./testTs/test/interfaces/declarationMerging/mergedInterfacesWithMultipleBases2.ts", - "./testTs/test/interfaces/declarationMerging/mergedInterfacesWithMultipleBases3.ts", - "./testTs/test/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface03.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithCallSignaturesThatHidesBaseSignature.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithCallSignaturesThatHidesBaseSignature2.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithOverloadedCallAndConstructSignatures.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithPropertyOfEveryType.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithConstructSignaturesThatHidesBaseSignature2.ts", - "./testTs/test/interfaces/interfaceDeclarations/derivedInterfaceDoesNotHideBaseSignatures.ts", - "./testTs/test/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface01.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceThatHidesBaseProperty.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithConstructSignaturesThatHidesBaseSignature.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithCallAndConstructSignature.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceWithSpecializedCallAndConstructSignatures.ts", - "./testTs/test/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface04.ts", - "./testTs/test/interfaces/interfaceDeclarations/interfaceExtendsObjectIntersection.ts", - "./testTs/test/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface02.ts", - "./testTs/test/parser/ecmascript2021/numericSeparators/parser.numericSeparators.binary.ts", - "./testTs/test/parser/ecmascript2021/numericSeparators/parser.numericSeparators.hex.ts", - "./testTs/test/parser/ecmascript2021/numericSeparators/parser.numericSeparators.octal.ts", - "./testTs/test/parser/ecmascript2021/numericSeparators/parser.numericSeparators.decimal.ts", - "./testTs/test/parser/ecmascript5/parserOptionalTypeMembers1.ts", - "./testTs/test/parser/ecmascript5/parserSyntaxWalker.generated.ts", - "./testTs/test/parser/ecmascript5/parservoidInQualifiedName0.ts", - "./testTs/test/parser/ecmascript5/parserExportAsFunctionIdentifier.ts", - "./testTs/test/parser/ecmascript5/parserNotRegex2.ts", - "./testTs/test/parser/ecmascript5/parserOverloadOnConstants1.ts", - "./testTs/test/parser/ecmascript5/parserSbp_7.9_A9_T3.ts", - "./testTs/test/parser/ecmascript5/parserParenthesizedVariableAndFunctionInTernary.ts", - "./testTs/test/parser/ecmascript5/parserDebuggerStatement1.ts", - "./testTs/test/parser/ecmascript5/parserEmptyStatement1.ts", - "./testTs/test/parser/ecmascript5/parserUnicode2.ts", - "./testTs/test/parser/ecmascript5/parserKeywordsAsIdentifierName1.ts", - "./testTs/test/parser/ecmascript5/parserEmptyFile1.ts", - "./testTs/test/parser/ecmascript5/parserS7.6.1.1_A1.10.ts", - "./testTs/test/parser/ecmascript5/parserVoidExpression1.ts", - "./testTs/test/parser/ecmascript5/parserDebuggerStatement2.ts", - "./testTs/test/parser/ecmascript5/parserInExpression1.ts", - "./testTs/test/parser/ecmascript5/TupleTypes/TupleType5.ts", - "./testTs/test/parser/ecmascript5/TupleTypes/TupleType2.ts", - "./testTs/test/parser/ecmascript5/TupleTypes/TupleType3.ts", - "./testTs/test/parser/ecmascript5/TupleTypes/TupleType1.ts", - "./testTs/test/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration5.ts", - "./testTs/test/parser/ecmascript5/ObjectTypes/parserObjectType1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/parserModifierOnPropertySignature2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic5.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/IncompleteMemberVariables/parserErrorRecovery_IncompleteMemberVariable1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement3.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement4.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement1.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement2.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArrowFunctions/ArrowFunction4.ts", - "./testTs/test/parser/ecmascript5/ErrorRecovery/ArrowFunctions/parserX_ArrowFunction4.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration26.ts", - "./testTs/test/parser/ecmascript5/ClassDeclarations/parserClassDeclaration7.d.ts", - "./testTs/test/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment3.ts", - "./testTs/test/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment4.ts", - "./testTs/test/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment1.ts", - "./testTs/test/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment2.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression13.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression3.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression12.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression4.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression2.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression1.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression10.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression6.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression15.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression14.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression8.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression5.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression11.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression7.ts", - "./testTs/test/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression9.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserInterfaceKeywordInEnum.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration5.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnum6.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserInterfaceKeywordInEnum1.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnum2.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration1.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration2.d.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration3.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnum1.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnum3.ts", - "./testTs/test/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration6.ts", - "./testTs/test/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity6.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser509546_1.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser509546.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser645086_4.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser643728.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser509546_2.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser645086_3.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser596700.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parserNotHexLiteral1.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser630933.ts", - "./testTs/test/parser/ecmascript5/RegressionTests/parser579071.ts", - "./testTs/test/parser/ecmascript5/Protected/Protected8.ts", - "./testTs/test/parser/ecmascript5/Protected/Protected9.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature12.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature9.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature5.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature6.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature8.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature4.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature10.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature1.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature11.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature3.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature7.ts", - "./testTs/test/parser/ecmascript5/PropertySignatures/parserPropertySignature2.ts", - "./testTs/test/parser/ecmascript5/Fuzz/parser768531.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration11.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration4.d.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration9.ts", - "./testTs/test/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration7.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration11.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration12.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration7.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration2.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration9.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration3.d.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration8.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration4.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModule1.ts", - "./testTs/test/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration6.ts", - "./testTs/test/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration8.ts", - "./testTs/test/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration1.d.ts", - "./testTs/test/parser/ecmascript5/ObjectLiterals/parserObjectLiterals1.ts", - "./testTs/test/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration5.ts", - "./testTs/test/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration7.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature7.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature4.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature9.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature1.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature5.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature3.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature8.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature12.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature10.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature2.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature11.ts", - "./testTs/test/parser/ecmascript5/MethodSignatures/parserMethodSignature6.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity1.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity5.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity10.ts", - "./testTs/test/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity6.ts", - "./testTs/test/parser/ecmascript5/Expressions/parserUnaryExpression6.ts", - "./testTs/test/parser/ecmascript5/Statements/parserDoStatement2.ts", - "./testTs/test/parser/ecmascript5/Statements/LabeledStatements/parser_duplicateLabel4.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueLabel.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement2.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget2.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement3.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget3.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget4.ts", - "./testTs/test/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement1.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget1.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement2.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget3.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement3.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget2.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget4.ts", - "./testTs/test/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement1.ts", - "./testTs/test/salsa/moduleExportAssignment2.ts", - "./testTs/test/salsa/inferringClassMembersFromAssignments8.ts", - "./testTs/test/salsa/moduleExportAssignment3.ts", - "./testTs/test/salsa/typeFromContextualThisType.ts", - "./testTs/test/salsa/malformedTags.ts", - "./testTs/test/salsa/moduleExportAlias5.ts", - "./testTs/test/salsa/mixedPropertyElementAccessAssignmentDeclaration.ts", - "./testTs/test/salsa/prototypePropertyAssignmentMergedTypeReference.ts", - "./testTs/test/salsa/moduleExportAssignment5.ts", - "./testTs/test/salsa/propertyAssignmentUseParentType1.ts", - "./testTs/test/salsa/moduleExportPropertyAssignmentDefault.ts", - "./testTs/test/salsa/moduleExportAlias4.ts", - "./testTs/test/salsa/moduleExportAliasExports.ts", - "./testTs/test/salsa/typeFromPropertyAssignment20.ts", - "./testTs/test/salsa/moduleExportDuplicateAlias2.ts", - "./testTs/test/salsa/moduleExportAliasElementAccessExpression.ts", - "./testTs/test/salsa/propertyAssignmentOnParenthesizedNumber.ts", - "./testTs/test/salsa/typeFromPropertyAssignment30.ts", - "./testTs/test/salsa/requireAssertsFromTypescript.ts", - "./testTs/test/salsa/moduleExportAlias3.ts", - "./testTs/test/salsa/typeFromPropertyAssignment39.ts", - "./testTs/test/salsa/binderUninitializedModuleExportsAssignment.ts", - "./testTs/test/salsa/moduleExportAssignment4.ts", - "./testTs/test/salsa/typeFromPropertyAssignment38.ts", - "./testTs/test/salsa/commonJSImportExportedClassExpression.ts", - "./testTs/test/salsa/moduleExportDuplicateAlias3.ts", - "./testTs/test/salsa/jsdocConstructorFunctionTypeReference.ts", - "./testTs/test/salsa/requireTwoPropertyAccesses.ts", - "./testTs/test/functions/functionWithUseStrictAndSimpleParameterList.ts", - "./testTs/test/functions/strictBindCallApply2.ts", - "./testTs/test/functions/functionImplementations.ts", - "./testTs/test/test/test_full.ts", - "./testTs/test/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesWithModule.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedDivision.ts", - "./testTs/test/es6/templates/templateStringInPropertyAssignment.ts", - "./testTs/test/es6/templates/templateStringInParentheses.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedTypeAssertionOnAddition.ts", - "./testTs/test/es6/templates/templateStringInUnaryPlus.ts", - "./testTs/test/es6/templates/templateStringInConditional.ts", - "./testTs/test/es6/templates/templateStringWhitespaceEscapes1.ts", - "./testTs/test/es6/templates/templateStringInTypeAssertion.ts", - "./testTs/test/es6/templates/templateStringMultiline1.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithOverloadResolution2.ts", - "./testTs/test/es6/templates/templateStringTermination3.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithTagsTypedAsAny.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithTypedTags.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedMultiplication.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedObjectLiteral.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedArray.ts", - "./testTs/test/es6/templates/templateStringWithPropertyAccess.ts", - "./testTs/test/es6/templates/templateStringMultiline3.ts", - "./testTs/test/es6/templates/templateStringTermination2.ts", - "./testTs/test/es6/templates/taggedTemplateStringsWithManyCallAndMemberExpressions.ts", - "./testTs/test/es6/templates/templateStringControlCharacterEscapes03.ts", - "./testTs/test/es6/templates/templateStringTermination4.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedInOperator.ts", - "./testTs/test/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes01.ts", - "./testTs/test/es6/templates/templateStringInSwitchAndCase.ts", - "./testTs/test/es6/templates/templateStringInArrowFunction.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedComments.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedModulo.ts", - "./testTs/test/es6/templates/templateStringTermination5.ts", - "./testTs/test/es6/templates/templateStringInInOperator.ts", - "./testTs/test/es6/templates/templateStringWithCommentsInArrowFunction.ts", - "./testTs/test/es6/templates/templateStringInArray.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedAddition.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedUnaryPlus.ts", - "./testTs/test/es6/templates/templateStringWithEmptyLiteralPortions.ts", - "./testTs/test/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes02.ts", - "./testTs/test/es6/templates/templateStringInWhile.ts", - "./testTs/test/es6/templates/templateStringMultiline2.ts", - "./testTs/test/es6/templates/taggedTemplateUntypedTagCall01.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedTemplateString.ts", - "./testTs/test/es6/templates/templateStringInTypeOf.ts", - "./testTs/test/es6/templates/templateStringInFunctionExpression.ts", - "./testTs/test/es6/templates/taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02.ts", - "./testTs/test/es6/templates/templateStringBinaryOperations.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedTypeOfOperator.ts", - "./testTs/test/es6/templates/templateStringControlCharacterEscapes04.ts", - "./testTs/test/es6/templates/templateStringControlCharacterEscapes02.ts", - "./testTs/test/es6/templates/templateStringControlCharacterEscapes01.ts", - "./testTs/test/es6/templates/templateStringWithOpenCommentInStringPortion.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedNewOperator.ts", - "./testTs/test/es6/templates/templateStringInIndexExpression.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedConditional.ts", - "./testTs/test/es6/templates/templateStringTermination1.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedFunctionExpression.ts", - "./testTs/test/es6/templates/templateStringWithEmbeddedArrowFunction.ts", - "./testTs/test/es6/templates/templateStringInEqualityChecks.ts", - "./testTs/test/es6/templates/templateStringWithBackslashEscapes01.ts", - "./testTs/test/es6/templates/templateStringWhitespaceEscapes2.ts", - "./testTs/test/es6/classDeclaration/superCallBeforeThisAccessing1.ts", - "./testTs/test/es6/classDeclaration/superCallBeforeThisAccessing8.ts", - "./testTs/test/es6/classDeclaration/superCallBeforeThisAccessing5.ts", - "./testTs/test/es6/classDeclaration/superCallBeforeThisAccessing2.ts", - "./testTs/test/es6/classDeclaration/emitClassDeclarationWithPropertyAccessInHeritageClause1.ts", - "./testTs/test/es6/Symbols/symbolProperty60.ts", - "./testTs/test/es6/spread/arrayLiteralSpreadES5iterable.ts", - "./testTs/test/es6/spread/arrayLiteralSpread.ts", - "./testTs/test/es6/destructuring/objectBindingPatternKeywordIdentifiers05.ts", - "./testTs/test/es6/destructuring/restElementWithAssignmentPattern5.ts", - "./testTs/test/es6/destructuring/destructuringWithLiteralInitializers.ts", - "./testTs/test/es6/destructuring/emptyArrayBindingPatternParameter04.ts", - "./testTs/test/es6/destructuring/nonIterableRestElement1.ts", - "./testTs/test/es6/destructuring/restElementWithAssignmentPattern3.ts", - "./testTs/test/es6/destructuring/destructuringEvaluationOrder.ts", - "./testTs/test/es6/destructuring/destructuringInFunctionType.ts", - "./testTs/test/es6/destructuring/destructuringVoid.ts", - "./testTs/test/es6/destructuring/destructuringVariableDeclaration1ES5.ts", - "./testTs/test/es6/destructuring/destructuringObjectBindingPatternAndAssignment1ES5.ts", - "./testTs/test/es6/destructuring/destructuringCatch.ts", - "./testTs/test/es6/destructuring/arrayAssignmentPatternWithAny.ts", - "./testTs/test/es6/destructuring/objectBindingPatternKeywordIdentifiers06.ts", - "./testTs/test/es6/destructuring/declarationInAmbientContext.ts", - "./testTs/test/es6/destructuring/restElementWithBindingPattern.ts", - "./testTs/test/es6/destructuring/destructuringObjectAssignmentPatternWithNestedSpread.ts", - "./testTs/test/es6/destructuring/destructuringVariableDeclaration1ES5iterable.ts", - "./testTs/test/enums/enumMerging.ts", - "./testTs/test/enums/enumConstantMemberWithTemplateLiteralsEmitDeclaration.ts", - "./testTs/test/enums/enumBasics.ts", - "./testTs/test/enums/enumClassification.ts", - "./testTs/test/enums/enumConstantMemberWithStringEmitDeclaration.ts", - "./testTs/test/constEnums/constEnum1.ts", - "./testTs/test/constEnums/constEnum4.ts" + "./testTs/test/testts/inferFromBindingPattern.ts", + "./testTs/test/testts/scanner/jsdocInvalidTokens.ts", + "./testTs/test/testts/scanner/ecmascript3/scannerES3NumericLiteral5.ts", + "./testTs/test/testts/scanner/ecmascript3/scannerES3NumericLiteral1.ts", + "./testTs/test/testts/scanner/ecmascript3/scannerES3NumericLiteral7.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerEnum1.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerStringLiteralWithContainingNullCharacter1.ts", + "./testTs/test/testts/scanner/ecmascript5/scannerNonAsciiHorizontalWhitespace.ts", + "./testTs/test/testts/test_ts/test_full.ts", + "./testTs/test/testts/statements/returnStatements/returnStatements.ts", + "./testTs/test/testts/statements/for-inStatements/for-inStatementsArray.ts", + "./testTs/test/testts/statements/for-await-ofStatements/emitter.forAwait.ts", + "./testTs/test/testts/statements/continueStatements/forContinueStatements.ts", + "./testTs/test/testts/statements/continueStatements/whileContinueStatements.ts", + "./testTs/test/testts/statements/continueStatements/forInContinueStatements.ts", + "./testTs/test/testts/statements/continueStatements/doWhileContinueStatements.ts", + "./testTs/test/testts/statements/breakStatements/whileBreakStatements.ts", + "./testTs/test/testts/statements/breakStatements/doWhileBreakStatements.ts", + "./testTs/test/testts/statements/breakStatements/forInBreakStatements.ts", + "./testTs/test/testts/statements/breakStatements/forBreakStatements.ts", + "./testTs/test/testts/statements/ifDoWhileStatements/ifDoWhileStatements.ts", + "./testTs/test/testts/statements/forStatements/forStatementsMultipleValidDecl.ts", + "./testTs/test/testts/statements/forStatements/forStatements.ts", + "./testTs/test/testts/statements/throwStatements/throwStatements.ts", + "./testTs/test/testts/statements/throwStatements/throwInEnclosingStatements.ts", + "./testTs/test/testts/statements/VariableStatements/everyTypeWithAnnotationAndInitializer.ts", + "./testTs/test/testts/statements/VariableStatements/validMultipleVariableDeclarations.ts", + "./testTs/test/testts/statements/VariableStatements/recursiveInitializer.ts", + "./testTs/test/testts/statements/VariableStatements/everyTypeWithInitializer.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of14.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of1.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of11.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of23.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of21.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of5.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of13.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of3.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of24.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of37.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of18.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of4.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of2.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of15.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of22.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of6.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of16.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of33.ts", + "./testTs/test/testts/statements/for-ofStatements/ES5For-of25.ts", + "./testTs/test/testts/controlFlow/controlFlowBinaryOrExpression.ts", + "./testTs/test/testts/controlFlow/controlFlowDoWhileStatement.ts", + "./testTs/test/testts/controlFlow/controlFlowForOfStatement.ts", + "./testTs/test/testts/controlFlow/controlFlowStringIndex.ts", + "./testTs/test/testts/controlFlow/controlFlowAliasingCatchVariables.ts", + "./testTs/test/testts/controlFlow/controlFlowElementAccess2.ts", + "./testTs/test/testts/controlFlow/controlFlowCommaOperator.ts", + "./testTs/test/testts/controlFlow/assertionTypePredicates2.ts", + "./testTs/test/testts/controlFlow/controlFlowBinaryAndExpression.ts", + "./testTs/test/testts/controlFlow/controlFlowWithTemplateLiterals.ts", + "./testTs/test/testts/controlFlow/controlFlowInstanceofExtendsFunction.ts", + "./testTs/test/testts/controlFlow/constLocalsInFunctionExpressions.ts", + "./testTs/test/testts/controlFlow/controlFlowForStatement.ts", + "./testTs/test/testts/controlFlow/controlFlowAssignmentExpression.ts", + "./testTs/test/testts/controlFlow/controlFlowTruthiness.ts", + "./testTs/test/testts/controlFlow/typeGuardsAsAssertions.ts", + "./testTs/test/testts/controlFlow/controlFlowOptionalChain2.ts", + "./testTs/test/testts/controlFlow/controlFlowDestructuringDeclaration.ts", + "./testTs/test/testts/controlFlow/controlFlowInOperator.ts", + "./testTs/test/testts/controlFlow/controlFlowForInStatement2.ts", + "./testTs/test/testts/controlFlow/controlFlowForInStatement.ts", + "./testTs/test/testts/controlFlow/controlFlowElementAccess.ts", + "./testTs/test/testts/controlFlow/controlFlowInstanceOfGuardPrimitives.ts", + "./testTs/test/testts/controlFlow/controlFlowWhileStatement.ts", + "./testTs/test/testts/controlFlow/controlFlowIteration.ts", + "./testTs/test/testts/types/import/importTypeAmbient.ts", + "./testTs/test/testts/types/never/neverUnionIntersection.ts", + "./testTs/test/testts/types/never/neverType.ts", + "./testTs/test/testts/types/objectTypeLiteral/objectTypeLiteralSyntax.ts", + "./testTs/test/testts/types/objectTypeLiteral/indexSignatures/stringIndexingResults.ts", + "./testTs/test/testts/types/objectTypeLiteral/indexSignatures/numericIndexingResults.ts", + "./testTs/test/testts/types/objectTypeLiteral/propertySignatures/propertyNameWithoutTypeAnnotation.ts", + "./testTs/test/testts/types/objectTypeLiteral/propertySignatures/propertyNamesOfReservedWords.ts", + "./testTs/test/testts/types/objectTypeLiteral/constructSignatures/constructSignaturesWithOverloadsThatDifferOnlyByReturnType.ts", + "./testTs/test/testts/types/objectTypeLiteral/constructSignatures/constructSignaturesWithIdenticalOverloads.ts", + "./testTs/test/testts/types/objectTypeLiteral/constructSignatures/constructSignaturesWithOverloads.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/identicalCallSignatures.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/specializedSignatureWithOptional.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignatureWithoutAnnotationsOrBody.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint3.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/identicalCallSignatures2.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignaturesThatDifferOnlyByReturnType.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/parametersWithNoAnnotationAreAny.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/stringLiteralTypesInImplementationSignatures.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/typeParameterAsTypeArgument.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/identicalCallSignatures3.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignaturesThatDifferOnlyByReturnType3.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/typeParameterUsedAsTypeParameterConstraint2.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/specializedSignatureIsSubtypeOfNonSpecializedSignature.ts", + "./testTs/test/testts/types/objectTypeLiteral/callSignatures/callSignatureWithoutReturnTypeAnnotationInference.ts", + "./testTs/test/testts/types/objectTypeLiteral/methodSignatures/methodSignaturesWithOverloads2.ts", + "./testTs/test/testts/types/objectTypeLiteral/methodSignatures/functionLiterals.ts", + "./testTs/test/testts/types/literal/literalTypes2.ts", + "./testTs/test/testts/types/literal/stringEnumLiteralTypes2.ts", + "./testTs/test/testts/types/literal/literalTypes3.ts", + "./testTs/test/testts/types/literal/enumLiteralTypes1.ts", + "./testTs/test/testts/types/literal/stringEnumLiteralTypes1.ts", + "./testTs/test/testts/types/literal/literalTypesAndDestructuring.ts", + "./testTs/test/testts/types/literal/booleanLiteralTypes1.ts", + "./testTs/test/testts/types/literal/numericLiteralTypes2.ts", + "./testTs/test/testts/types/literal/numericLiteralTypes1.ts", + "./testTs/test/testts/types/literal/stringLiteralsAssertionsInEqualityComparisons01.ts", + "./testTs/test/testts/types/literal/literalTypesAndTypeAssertions.ts", + "./testTs/test/testts/types/literal/enumLiteralTypes2.ts", + "./testTs/test/testts/types/literal/literalTypes1.ts", + "./testTs/test/testts/types/literal/booleanLiteralTypes2.ts", + "./testTs/test/testts/types/literal/literalTypeWidening.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/typeofModuleWithoutExports.ts", + "./testTs/test/testts/types/specifyingTypes/typeQueries/typeofClass2.ts", + "./testTs/test/testts/types/specifyingTypes/typeLiterals/arrayLiteral.ts", + "./testTs/test/testts/types/specifyingTypes/typeLiterals/functionLiteral.ts", + "./testTs/test/testts/types/specifyingTypes/typeLiterals/parenthesizedTypes.ts", + "./testTs/test/testts/types/specifyingTypes/typeLiterals/functionLiteralForOverloads.ts", + "./testTs/test/testts/types/specifyingTypes/typeLiterals/functionLiteralForOverloads2.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveIndexingWithForIn.ts", + "./testTs/test/testts/types/nonPrimitive/nonPrimitiveIndexingWithForInSupressError.ts", + "./testTs/test/testts/types/nonPrimitive/assignObjectToNonPrimitive.ts", + "./testTs/test/testts/types/thisType/thisTypeInFunctions3.ts", + "./testTs/test/testts/types/thisType/thisTypeInTypePredicate.ts", + "./testTs/test/testts/types/thisType/thisTypeInInterfaces.ts", + "./testTs/test/testts/types/thisType/contextualThisType.ts", + "./testTs/test/testts/types/thisType/thisTypeInTuples.ts", + "./testTs/test/testts/types/thisType/thisTypeInObjectLiterals.ts", + "./testTs/test/testts/types/thisType/contextualThisTypeInJavascript.ts", + "./testTs/test/testts/types/thisType/thisTypeInClasses.ts", + "./testTs/test/testts/types/thisType/fluentInterfaces.ts", + "./testTs/test/testts/types/thisType/thisTypeAndConstraints.ts", + "./testTs/test/testts/types/thisType/inferThisType.ts", + "./testTs/test/testts/types/thisType/thisTypeInBasePropertyAndDerivedContainerOfBase01.ts", + "./testTs/test/testts/types/members/typesWithSpecializedConstructSignatures.ts", + "./testTs/test/testts/types/members/typesWithOptionalProperty.ts", + "./testTs/test/testts/types/members/typesWithSpecializedCallSignatures.ts", + "./testTs/test/testts/types/members/objectTypeWithConstructSignatureHidingMembersOfFunction.ts", + "./testTs/test/testts/types/members/classWithPublicProperty.ts", + "./testTs/test/testts/types/members/classWithProtectedProperty.ts", + "./testTs/test/testts/types/members/objectTypeWithCallSignatureAppearsToBeFunctionType.ts", + "./testTs/test/testts/types/members/objectTypeWithCallSignatureHidingMembersOfFunction.ts", + "./testTs/test/testts/types/localTypes/localTypes2.ts", + "./testTs/test/testts/types/localTypes/localTypes3.ts", + "./testTs/test/testts/types/typeAliases/circularTypeAliasForUnionWithInterface.ts", + "./testTs/test/testts/types/typeAliases/asiPreventsParsingAsTypeAlias02.ts", + "./testTs/test/testts/types/typeAliases/asiPreventsParsingAsTypeAlias01.ts", + "./testTs/test/testts/types/typeAliases/genericTypeAliases.ts", + "./testTs/test/testts/types/typeAliases/interfaceDoesNotDependOnBaseTypes.ts", + "./testTs/test/testts/types/typeAliases/circularTypeAliasForUnionWithClass.ts", + "./testTs/test/testts/types/typeAliases/typeAliases.ts", + "./testTs/test/testts/types/mapped/isomorphicMappedTypeInference.ts", + "./testTs/test/testts/types/mapped/mappedTypesAndObjects.ts", + "./testTs/test/testts/types/mapped/mappedTypeOverlappingStringEnumKeys.ts", + "./testTs/test/testts/types/mapped/mappedTypeModifiers.ts", + "./testTs/test/testts/types/mapped/mappedTypes3.ts", + "./testTs/test/testts/types/mapped/mappedTypesArraysTuples.ts", + "./testTs/test/testts/types/mapped/mappedTypes1.ts", + "./testTs/test/testts/types/mapped/mappedTypes2.ts", + "./testTs/test/testts/types/contextualTypes/partiallyAnnotatedFunction/partiallyAnnotatedFunctionWitoutTypeParameter.ts", + "./testTs/test/testts/types/contextualTypes/methodDeclarations/contextuallyTypedObjectLiteralMethodDeclaration01.ts", + "./testTs/test/testts/types/contextualTypes/methodDeclarations/contextuallyTypedBindingInitializer.ts", + "./testTs/test/testts/types/contextualTypes/jsxAttributes/contextuallyTypedStringLiteralsInJsxAttributes01.tsx", + "./testTs/test/testts/types/contextualTypes/logicalAnd/contextuallyTypeLogicalAnd01.ts", + "./testTs/test/testts/types/conditional/variance.ts", + "./testTs/test/testts/types/conditional/inferTypes2.ts", + "./testTs/test/testts/types/namedTypes/classWithOptionalParameter.ts", + "./testTs/test/testts/types/namedTypes/genericInstantiationEquivalentToObjectLiteral.ts", + "./testTs/test/testts/types/namedTypes/optionalMethods.ts", + "./testTs/test/testts/types/primitives/string/validStringAssignments.ts", + "./testTs/test/testts/types/primitives/string/stringPropertyAccess.ts", + "./testTs/test/testts/types/primitives/string/extendStringInterface.ts", + "./testTs/test/testts/types/primitives/number/extendNumberInterface.ts", + "./testTs/test/testts/types/primitives/number/numberPropertyAccess.ts", + "./testTs/test/testts/types/primitives/number/validNumberAssignments.ts", + "./testTs/test/testts/types/primitives/undefined/validUndefinedValues.ts", + "./testTs/test/testts/types/primitives/undefined/invalidUndefinedValues.ts", + "./testTs/test/testts/types/primitives/void/validVoidAssignments.ts", + "./testTs/test/testts/types/primitives/void/validVoidValues.ts", + "./testTs/test/testts/types/primitives/boolean/extendBooleanInterface.ts", + "./testTs/test/testts/types/primitives/boolean/validBooleanAssignments.ts", + "./testTs/test/testts/types/primitives/boolean/booleanPropertyAccess.ts", + "./testTs/test/testts/types/primitives/enum/validEnumAssignments.ts", + "./testTs/test/testts/types/union/contextualTypeWithUnionTypeCallSignatures.ts", + "./testTs/test/testts/types/union/contextualTypeWithUnionTypeIndexSignatures.ts", + "./testTs/test/testts/types/union/unionTypeCallSignatures2.ts", + "./testTs/test/testts/types/union/contextualTypeWithUnionTypeMembers.ts", + "./testTs/test/testts/types/union/unionTypeReduction.ts", + "./testTs/test/testts/types/union/unionTypeCallSignatures3.ts", + "./testTs/test/testts/types/union/unionTypeIndexSignature.ts", + "./testTs/test/testts/types/tuple/wideningTuples1.ts", + "./testTs/test/testts/types/tuple/tupleElementTypes1.ts", + "./testTs/test/testts/types/tuple/wideningTuples6.ts", + "./testTs/test/testts/types/tuple/tupleElementTypes2.ts", + "./testTs/test/testts/types/tuple/wideningTuples2.ts", + "./testTs/test/testts/types/tuple/tupleElementTypes3.ts", + "./testTs/test/testts/types/tuple/typeInferenceWithTupleType.ts", + "./testTs/test/testts/types/tuple/tupleElementTypes4.ts", + "./testTs/test/testts/types/tuple/named/namedTupleMembers.ts", + "./testTs/test/testts/types/keyof/keyofAndIndexedAccess.ts", + "./testTs/test/testts/types/keyof/keyofIntersection.ts", + "./testTs/test/testts/types/any/assignEveryTypeToAny.ts", + "./testTs/test/testts/types/any/anyPropertyAccess.ts", + "./testTs/test/testts/types/any/anyAsFunctionCall.ts", + "./testTs/test/testts/types/typeParameters/recurringTypeParamForContainerOfBase01.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraint.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraintTransitively2.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/functionConstraintSatisfaction.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/instantiateGenericClassWithZeroTypeArguments.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints3.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints2.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/wrappedAndRecursiveConstraints.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/callGenericFunctionWithZeroTypeArguments.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/constraintSatisfactionWithAny.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/constraintSatisfactionWithAny2.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/typeParameterAsTypeParameterConstraintTransitively.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/functionConstraintSatisfaction3.ts", + "./testTs/test/testts/types/typeParameters/typeArgumentLists/constraintSatisfactionWithEmptyObject.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints3.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/typeParametersAvailableInNestedScope.ts", + "./testTs/test/testts/types/typeParameters/typeParameterLists/propertyAccessOnTypeParameterWithConstraints2.ts", + "./testTs/test/testts/types/spread/spreadExcessProperty.ts", + "./testTs/test/testts/types/spread/spreadOverwritesProperty.ts", + "./testTs/test/testts/types/spread/spreadUnion4.ts", + "./testTs/test/testts/types/spread/spreadUnion.ts", + "./testTs/test/testts/types/spread/spreadContextualTypedBindingPattern.ts", + "./testTs/test/testts/types/spread/objectSpreadRepeatedNullCheckPerf.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/recursiveTypeInGenericConstraint.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/nominalSubtypeCheckOfTypeParameter.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/infiniteExpansionThroughTypeInference.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/arrayLiteralsWithRecursiveGenerics.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/recursiveTypesUsedAsFunctionParameters.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/infiniteExpansionThroughInstantiation2.ts", + "./testTs/test/testts/types/typeRelationships/recursiveTypes/nominalSubtypeCheckOfTypeParameter2.ts", + "./testTs/test/testts/types/typeRelationships/widenedTypes/strictNullChecksNoWidening.ts", + "./testTs/test/testts/types/typeRelationships/widenedTypes/objectLiteralWidened.ts", + "./testTs/test/testts/types/typeRelationships/widenedTypes/initializersWidened.ts", + "./testTs/test/testts/types/typeRelationships/widenedTypes/arrayLiteralWidened.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality3.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/nullIsSubtypeOfEverythingButUndefined.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/undefinedIsSubtypeOfEverything.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypesOfAny.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypesOfTypeParameterWithConstraints2.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithConstructSignatures3.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithCallSignatures3.ts", + "./testTs/test/testts/types/typeRelationships/subtypesAndSuperTypes/subtypingWithObjectMembersOptionality4.ts", + "./testTs/test/testts/types/typeRelationships/comparable/optionalProperties01.ts", + "./testTs/test/testts/types/typeRelationships/comparable/switchCaseWithIntersectionTypes01.ts", + "./testTs/test/testts/types/typeRelationships/comparable/independentPropertyVariance.ts", + "./testTs/test/testts/types/typeRelationships/comparable/equalityWithUnionTypes01.ts", + "./testTs/test/testts/types/typeRelationships/comparable/optionalProperties02.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignatures.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignatures.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentity.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithComplexConstraints.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignatures2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesDifferingParamCounts.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams3.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesWithOverloads.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints3.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterNames.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithOptionality.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByReturnType.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentity2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPublics.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignatures2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterCounts2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/typeParametersAreIdenticalToThemselves.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithPrivates.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignaturesDifferingParamCounts2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/primtiveTypesAreIdentical.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithConstructSignaturesDifferingParamCounts.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignatures2.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingTypeParameterNames.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByConstraints.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesOptionalParams.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingTypeParameterCounts.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesDifferingByConstraints3.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithCallSignatures.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericConstructSignaturesOptionalParams3.ts", + "./testTs/test/testts/types/typeRelationships/typeAndMemberIdentity/objectTypesIdentityWithGenericCallSignaturesDifferingByReturnType.ts", + "./testTs/test/testts/types/typeRelationships/bestCommonType/arrayLiteralWithMultipleBestCommonTypes.ts", + "./testTs/test/testts/types/typeRelationships/bestCommonType/heterogeneousArrayLiterals.ts", + "./testTs/test/testts/types/typeRelationships/instanceOf/narrowingConstrainedTypeVariable.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/unionAndIntersectionInference2.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithOverloadedFunctionTypedArguments.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallTypeArgumentInference.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericContextualTypes1.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericFunctionParameters.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndIndexersErrors.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndIndexers.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndNumericIndexer.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithArrayLiteralArgs.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericClassWithObjectTypeArgsAndConstraints.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithConstraintsTypeArgumentInference.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithFunctionTypedArguments3.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/keyofInferenceLowerPriorityThanReturn.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndStringIndexer.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/keyofInferenceIntersectsResults.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/unionAndIntersectionInference1.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithOverloadedConstructorTypedArguments.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/bivariantInferences.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/genericCallWithObjectTypeArgsAndConstraints.ts", + "./testTs/test/testts/types/typeRelationships/typeInference/discriminatedUnionInference.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/anyAssignableToEveryType.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/nullAssignableToEveryType.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/numberAssignableToEnum.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/undefinedAssignableToEveryType.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures3.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/anyAssignabilityInInheritance.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers3.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/everyTypeAssignableToAny.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithWithGenericConstructSignatures.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/anyAssignableToEveryType2.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembers.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithGenericCallSignatures.ts", + "./testTs/test/testts/types/typeRelationships/assignmentCompatibility/assignmentCompatWithObjectMembersNumericNames.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesOverloads03.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesOverloads04.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesInUnionTypes04.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypeAssertion01.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesAsTags03.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesAsTags02.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesAsTags01.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesAndTuples01.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralMatchedInSwitch01.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesOverloads01.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesAndParenthesizedExpressions01.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesOverloads02.ts", + "./testTs/test/testts/types/stringLiteral/stringLiteralTypesWithTemplateStrings01.ts", + "./testTs/test/testts/types/intersection/operatorsAndIntersectionTypes.ts", + "./testTs/test/testts/types/intersection/intersectionTypeMembers.ts", + "./testTs/test/testts/types/intersection/intersectionOfUnionNarrowing.ts", + "./testTs/test/testts/types/intersection/intersectionTypeInference2.ts", + "./testTs/test/testts/types/intersection/intersectionMemberOfUnionNarrowsCorrectly.ts", + "./testTs/test/testts/types/intersection/intersectionTypeOverloading.ts", + "./testTs/test/testts/types/intersection/intersectionTypeEquivalence.ts", + "./testTs/test/testts/types/intersection/intersectionTypeInference3.ts", + "./testTs/test/testts/types/intersection/contextualIntersectionType.ts", + "./testTs/test/testts/types/intersection/intersectionThisTypes.ts", + "./testTs/test/testts/types/intersection/intersectionOfUnionOfUnitTypes.ts", + "./testTs/test/testts/types/rest/genericRestParameters2.ts", + "./testTs/test/testts/types/rest/objectRestParameter.ts", + "./testTs/test/testts/types/rest/objectRestForOf.ts", + "./testTs/test/testts/types/rest/objectRestCatchES5.ts", + "./testTs/test/testts/types/rest/objectRestReadonly.ts", + "./testTs/test/testts/types/rest/objectRestAssignment.ts", + "./testTs/test/testts/types/rest/objectRest2.ts", + "./testTs/test/testts/internalModules/codeGeneration/nameCollision.ts", + "./testTs/test/testts/internalModules/codeGeneration/importStatements.ts", + "./testTs/test/testts/internalModules/codeGeneration/exportCodeGen.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/TwoInternalModulesWithTheSameNameAndDifferentCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/TwoInternalModulesWithTheSameNameAndSameCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticFunctionAndNonExportedFunctionThatShareAName.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedModulesOfTheSameName.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStringIndexerAndExportedFunctionWithTypeIncompatibleWithIndexer.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/AmbientModuleAndNonAmbientClassWithSameNameAndCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/FunctionAndModuleWithSameNameAndDifferentCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/AmbientModuleAndAmbientFunctionWithTheSameNameAndCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedAndNonExportedClassesOfTheSameName.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/EnumAndModuleWithSameNameAndCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/AmbientModuleAndAmbientWithSameNameAndCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedInterfacesOfTheSameName.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ModuleAndEnumWithSameNameAndCommonRoot.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedAndNonExportedInterfacesOfTheSameName.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/ClassAndModuleThatMergeWithStaticVariableAndNonExportedVarThatShareAName.ts", + "./testTs/test/testts/internalModules/DeclarationMerging/TwoInternalModulesThatMergeEachWithExportedAndNonExportedLocalVarsOfTheSameName.ts", + "./testTs/test/testts/internalModules/importDeclarations/exportImportAlias.ts", + "./testTs/test/testts/internalModules/importDeclarations/importAliasIdentifiers.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportInterfaceWithInaccessibleTypeInIndexerTypeAnnotations.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportVariableWithAccessibleTypeInTypeAnnotation.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInMemberTypeAnnotations.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportClassWithInaccessibleTypeInIndexerTypeAnnotations.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportVariableWithInaccessibleTypeInTypeAnnotation.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportFunctionWithInaccessibleTypesInParameterTypeAnnotation.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportFunctionWithInaccessibleTypesInReturnTypeAnnotation.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportObjectLiteralAndObjectTypeLiteralWithAccessibleTypesInNestedMemberTypeAnnotations.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportModuleWithAccessibleTypesOnItsExportedMembers.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportClassWithInaccessibleTypeInTypeParameterConstraint.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportClassWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportFunctionWithAccessibleTypesInParameterAndReturnTypeAnnotation.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportClassWhichExtendsInterfaceWithInaccessibleType.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportInterfaceWithAccessibleTypesInTypeParameterConstraintsClassHeritageListMemberTypeAnnotations.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportInterfaceWithInaccessibleTypeInTypeParameterConstraint.ts", + "./testTs/test/testts/internalModules/exportDeclarations/ExportVariableOfGenericTypeWithInaccessibleTypeAsTypeArgument.ts", + "./testTs/test/testts/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace03.ts", + "./testTs/test/testts/internalModules/moduleDeclarations/nestedModules.ts", + "./testTs/test/testts/internalModules/moduleDeclarations/nonInstantiatedModule.ts", + "./testTs/test/testts/internalModules/moduleDeclarations/instantiatedModule.ts", + "./testTs/test/testts/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace05.ts", + "./testTs/test/testts/internalModules/moduleDeclarations/asiPreventsParsingAsNamespace01.ts", + "./testTs/test/testts/internalModules/moduleBody/moduleWithStatementsOfEveryKind.ts", + "./testTs/test/testts/classes/mixinClassesAnnotated.ts", + "./testTs/test/testts/classes/mixinClassesMembers.ts", + "./testTs/test/testts/classes/mixinClassesAnonymous.ts", + "./testTs/test/testts/classes/classExpression.ts", + "./testTs/test/testts/classes/classExpressions/classWithStaticFieldInParameterBindingPattern.ts", + "./testTs/test/testts/classes/classExpressions/classWithStaticFieldInParameterInitializer.ts", + "./testTs/test/testts/classes/classExpressions/genericClassExpressionInFunction.ts", + "./testTs/test/testts/classes/classExpressions/classExpressionLoop.ts", + "./testTs/test/testts/classes/classExpressions/classExpression5.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock12.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock24.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock5.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock15.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock18.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock14.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock27.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock13.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock11.ts", + "./testTs/test/testts/classes/classStaticBlock/classStaticBlock17.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/thisInInstanceMemberInitializer.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/abstractProperty.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/instanceMemberInitialization.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/instanceMemberWithComputedPropertyName2.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/staticMemberInitialization.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/instanceMemberWithComputedPropertyName.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberFunctionDeclarations/memberFunctionsWithPublicOverloads.ts", + "./testTs/test/testts/classes/propertyMemberDeclarations/memberFunctionDeclarations/typeOfThisInMemberFunctions.ts", + "./testTs/test/testts/classes/members/constructorFunctionTypes/classWithNoConstructorOrBaseClass.ts", + "./testTs/test/testts/classes/members/constructorFunctionTypes/constructorHasPrototypeProperty.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers2.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/thisAndSuperInStaticMembers1.ts", + "./testTs/test/testts/classes/members/instanceAndStaticMembers/typeOfThisInStaticMembers2.ts", + "./testTs/test/testts/classes/members/inheritanceAndOverriding/derivedClassOverridesWithoutSubtype.ts", + "./testTs/test/testts/classes/members/classTypes/indexersInClassType.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticFieldUnaryMutation.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticMethodCallExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameComputedPropertyName1.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticFieldInitializer.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameFieldInitializer.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameFieldAccess.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameDeclaration.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameFieldCallExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticAndStaticInitializer.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameFieldDestructuredBinding.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameInLhsReceiverExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameComputedPropertyName4.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticMethodInStaticFieldInit.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticFieldClassExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticAccessorsCallExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameClassExpressionLoop.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameFieldUnaryMutation.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticFieldAssignment.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticFieldNoInitializer.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameConstructorSignature.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameComputedPropertyName2.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameAndStaticInitializer.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameComputedPropertyName3.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameNestedClassNameConflict.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameAccessorsCallExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticFieldDestructuredBinding.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameMethodInStaticFieldInit.ts", + "./testTs/test/testts/classes/members/privateNames/privateStaticNameShadowing.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameMethodCallExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameFieldClassExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameStaticFieldCallExpression.ts", + "./testTs/test/testts/classes/members/privateNames/privateNameFieldAssignment.ts", + "./testTs/test/testts/classes/constructorDeclarations/classConstructorAccessibility4.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorWithExpressionLessReturn.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorParameters/constructorImplementationWithDefaultValues.ts", + "./testTs/test/testts/classes/constructorDeclarations/constructorParameters/constructorOverloadsWithOptionalParameters.ts", + "./testTs/test/testts/classes/constructorDeclarations/superCalls/emitStatementsBeforeSuperCall.ts", + "./testTs/test/testts/classes/constructorDeclarations/superCalls/emitStatementsBeforeSuperCallWithDefineFields.ts", + "./testTs/test/testts/classes/staticIndexSignature/staticIndexSignature6.ts", + "./testTs/test/testts/classes/classDeclarations/mergeClassInterfaceAndModule.ts", + "./testTs/test/testts/classes/classDeclarations/classDeclarationLoop.ts", + "./testTs/test/testts/classes/classDeclarations/classExtendingBuiltinType.ts", + "./testTs/test/testts/classes/classDeclarations/classAndInterfaceWithSameName.ts", + "./testTs/test/testts/classes/classDeclarations/mergedInheritedClassInterface.ts", + "./testTs/test/testts/classes/classDeclarations/classAndInterfaceMerge.d.ts", + "./testTs/test/testts/classes/classDeclarations/modifierOnClassDeclarationMemberInFunction.ts", + "./testTs/test/testts/classes/classDeclarations/mergedClassInterface.ts", + "./testTs/test/testts/classes/classDeclarations/classExtendingNull.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/classExtendingClass.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/constructorFunctionTypeIsAssignableToBaseType.ts", + "./testTs/test/testts/classes/classDeclarations/classHeritageSpecification/constructorFunctionTypeIsAssignableToBaseType2.ts", + "./testTs/test/testts/jsx/jsxParsingError3.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty11.tsx", + "./testTs/test/testts/jsx/tsxSpreadChildrenInvalidType.tsx", + "./testTs/test/testts/jsx/tsxEmit2.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution7.tsx", + "./testTs/test/testts/jsx/tsxGenericAttributesType1.tsx", + "./testTs/test/testts/jsx/tsxElementResolution15.tsx", + "./testTs/test/testts/jsx/jsxParsingError4.tsx", + "./testTs/test/testts/jsx/tsxDefaultAttributesResolution2.tsx", + "./testTs/test/testts/jsx/tsxElementResolution1.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution17.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution4.tsx", + "./testTs/test/testts/jsx/jsxParsingError2.tsx", + "./testTs/test/testts/jsx/tsxReactComponentWithDefaultTypeParameter2.tsx", + "./testTs/test/testts/jsx/tsxGenericAttributesType6.tsx", + "./testTs/test/testts/jsx/tsxErrorRecovery2.tsx", + "./testTs/test/testts/jsx/tsxUnionElementType1.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution5.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponents1.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution13.tsx", + "./testTs/test/testts/jsx/tsxElementResolution18.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution16.tsx", + "./testTs/test/testts/jsx/tsxFragmentReactEmit.tsx", + "./testTs/test/testts/jsx/jsxReactTestSuite.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution14.tsx", + "./testTs/test/testts/jsx/tsxStatelessFunctionComponents2.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution11.tsx", + "./testTs/test/testts/jsx/tsxFragmentErrors.tsx", + "./testTs/test/testts/jsx/tsxGenericAttributesType9.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution8.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution6.tsx", + "./testTs/test/testts/jsx/tsxDynamicTagName8.tsx", + "./testTs/test/testts/jsx/tsxEmit3.tsx", + "./testTs/test/testts/jsx/tsxIntrinsicAttributeErrors.tsx", + "./testTs/test/testts/jsx/tsxDynamicTagName7.tsx", + "./testTs/test/testts/jsx/tsxDynamicTagName9.tsx", + "./testTs/test/testts/jsx/tsxElementResolution11.tsx", + "./testTs/test/testts/jsx/tsxElementResolution12.tsx", + "./testTs/test/testts/jsx/jsxEsprimaFbTestSuite.tsx", + "./testTs/test/testts/jsx/jsxCheckJsxNoTypeArgumentsAllowed.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution1.tsx", + "./testTs/test/testts/jsx/tsxUnionElementType6.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty6.tsx", + "./testTs/test/testts/jsx/tsxReactEmitNesting.tsx", + "./testTs/test/testts/jsx/tsxNoJsx.tsx", + "./testTs/test/testts/jsx/jsxSpreadOverwritesAttributeStrict.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty4.tsx", + "./testTs/test/testts/jsx/tsxUnionTypeComponent1.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution10.tsx", + "./testTs/test/testts/jsx/tsxElementResolution2.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution16.tsx", + "./testTs/test/testts/jsx/tsxDynamicTagName2.tsx", + "./testTs/test/testts/jsx/checkJsxGenericTagHasCorrectInferences.tsx", + "./testTs/test/testts/jsx/tsxUnionTypeComponent2.tsx", + "./testTs/test/testts/jsx/tsxDynamicTagName4.tsx", + "./testTs/test/testts/jsx/tsxElementResolution16.tsx", + "./testTs/test/testts/jsx/tsxReactEmitWhitespace.tsx", + "./testTs/test/testts/jsx/tsxElementResolution3.tsx", + "./testTs/test/testts/jsx/jsxInvalidEsprimaTestSuite.tsx", + "./testTs/test/testts/jsx/tsxUnionElementType2.tsx", + "./testTs/test/testts/jsx/tsxDefaultAttributesResolution1.tsx", + "./testTs/test/testts/jsx/tsxUnionElementType4.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenCanBeTupleType.tsx", + "./testTs/test/testts/jsx/tsxParseTests1.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution12.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty7.tsx", + "./testTs/test/testts/jsx/tsxTypeArgumentsJsxPreserveOutput.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution2.tsx", + "./testTs/test/testts/jsx/tsxInArrowFunction.tsx", + "./testTs/test/testts/jsx/tsxSpreadChildren.tsx", + "./testTs/test/testts/jsx/tsxElementResolution8.tsx", + "./testTs/test/testts/jsx/unicodeEscapesInJsxtags.tsx", + "./testTs/test/testts/jsx/tsxElementResolution14.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution7.tsx", + "./testTs/test/testts/jsx/tsxAttributeErrors.tsx", + "./testTs/test/testts/jsx/tsxCorrectlyParseLessThanComparison1.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution2.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution.tsx", + "./testTs/test/testts/jsx/tsxGenericArrowFunctionParsing.tsx", + "./testTs/test/testts/jsx/tsxGenericAttributesType4.tsx", + "./testTs/test/testts/jsx/jsxAndTypeAssertion.tsx", + "./testTs/test/testts/jsx/tsxElementResolution5.tsx", + "./testTs/test/testts/jsx/jsxParsingError1.tsx", + "./testTs/test/testts/jsx/tsxParseTests2.tsx", + "./testTs/test/testts/jsx/tsxTypeErrors.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution5.tsx", + "./testTs/test/testts/jsx/tsxReactEmitWhitespace2.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty15.tsx", + "./testTs/test/testts/jsx/tsxGenericAttributesType5.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty10.tsx", + "./testTs/test/testts/jsx/tsxElementResolution10.tsx", + "./testTs/test/testts/jsx/tsxUnionElementType5.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution9.tsx", + "./testTs/test/testts/jsx/tsxReactEmit3.tsx", + "./testTs/test/testts/jsx/checkJsxNamespaceNamesQuestionableForms.tsx", + "./testTs/test/testts/jsx/tsxElementResolution4.tsx", + "./testTs/test/testts/jsx/tsxGenericAttributesType7.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty12.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution15.tsx", + "./testTs/test/testts/jsx/tsxElementResolution13.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution3.tsx", + "./testTs/test/testts/jsx/tsxReactEmit4.tsx", + "./testTs/test/testts/jsx/tsxDynamicTagName6.tsx", + "./testTs/test/testts/jsx/tsxElementResolution.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution3.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution4.tsx", + "./testTs/test/testts/jsx/tsxTypeArgumentResolution.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution15.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty5.tsx", + "./testTs/test/testts/jsx/checkJsxIntersectionElementPropsType.tsx", + "./testTs/test/testts/jsx/tsxDefaultAttributesResolution3.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty2.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty14.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution6.tsx", + "./testTs/test/testts/jsx/checkJsxSubtleSkipContextSensitiveBug.tsx", + "./testTs/test/testts/jsx/tsxReactComponentWithDefaultTypeParameter1.tsx", + "./testTs/test/testts/jsx/tsxEmit1.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty9.tsx", + "./testTs/test/testts/jsx/tsxLibraryManagedAttributes.tsx", + "./testTs/test/testts/jsx/tsxErrorRecovery1.tsx", + "./testTs/test/testts/jsx/tsxElementResolution7.tsx", + "./testTs/test/testts/jsx/tsxOpeningClosingNames.tsx", + "./testTs/test/testts/jsx/tsxElementResolution9.tsx", + "./testTs/test/testts/jsx/tsxDynamicTagName5.tsx", + "./testTs/test/testts/jsx/commentEmittingInPreserveJsx1.tsx", + "./testTs/test/testts/jsx/tsxGenericAttributesType2.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution1.tsx", + "./testTs/test/testts/jsx/tsxElementResolution6.tsx", + "./testTs/test/testts/jsx/tsxReactEmit2.tsx", + "./testTs/test/testts/jsx/tsxReactComponentWithDefaultTypeParameter3.tsx", + "./testTs/test/testts/jsx/tsxFragmentPreserveEmit.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty8.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty1.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty3.tsx", + "./testTs/test/testts/jsx/tsxDynamicTagName1.tsx", + "./testTs/test/testts/jsx/checkJsxChildrenProperty13.tsx", + "./testTs/test/testts/jsx/tsxReactEmit1.tsx", + "./testTs/test/testts/jsx/tsxAttributeInvalidNames.tsx", + "./testTs/test/testts/jsx/tsxSpreadAttributesResolution12.tsx", + "./testTs/test/testts/jsx/tsxGenericAttributesType8.tsx", + "./testTs/test/testts/jsx/checkJsxUnionSFXContextualTypeInferredCorrectly.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution13.tsx", + "./testTs/test/testts/jsx/tsxUnionElementType3.tsx", + "./testTs/test/testts/jsx/tsxReactEmitEntities.tsx", + "./testTs/test/testts/jsx/tsxErrorRecovery3.tsx", + "./testTs/test/testts/jsx/tsxGenericAttributesType3.tsx", + "./testTs/test/testts/jsx/tsxAttributeResolution8.tsx", + "./testTs/test/testts/jsx/tsxDynamicTagName3.tsx", + "./testTs/test/testts/jsx/inline/inlineJsxFactoryDeclarationsLocalTypes.tsx", + "./testTs/test/testts/jsx/inline/inlineJsxAndJsxFragPragma.tsx", + "./testTs/test/testts/jsx/inline/inlineJsxFactoryOverridesCompilerOption.tsx", + "./testTs/test/testts/jsx/inline/inlineJsxFactoryDeclarations.tsx", + "./testTs/test/testts/jsx/inline/inlineJsxAndJsxFragPragmaOverridesCompilerOptions.tsx", + "./testTs/test/testts/jsx/inline/inlineJsxFactoryWithFragmentIsError.tsx", + "./testTs/test/testts/jsx/inline/inlineJsxFactoryLocalTypeGlobalFallback.tsx", + "./testTs/test/testts/references/library-reference-6.ts", + "./testTs/test/testts/references/library-reference-scoped-packages.ts", + "./testTs/test/testts/references/library-reference-14.ts", + "./testTs/test/testts/references/library-reference-1.ts", + "./testTs/test/testts/references/library-reference-7.ts", + "./testTs/test/testts/references/library-reference-3.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithEnumUnion.ts", + "./testTs/test/testts/es7/exponentiationOperator/compoundExponentiationAssignmentLHSIsReference.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithEnum.ts", + "./testTs/test/testts/es7/exponentiationOperator/exponentiationOperatorWithAnyAndNumber.ts", + "./testTs/test/testts/ambient/ambientEnumDeclaration1.ts", + "./testTs/test/testts/ambient/ambientEnumDeclaration2.ts", + "./testTs/test/testts/ambient/ambientShorthand_declarationEmit.ts", + "./testTs/test/testts/externalModules/globalAugmentationModuleResolution.ts", + "./testTs/test/testts/externalModules/esnext/esnextmodulekindWithES2015Target.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES2015Target.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target4.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target7.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target2.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindExportClassNameWithObject.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target12.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target5.ts", + "./testTs/test/testts/externalModules/es6/es6modulekindWithES5Target8.ts", + "./testTs/test/testts/externalModules/typeOnly/preserveValueImports_module.ts", + "./testTs/test/testts/es2021/logicalAssignment/logicalAssignment1.ts", + "./testTs/test/testts/es2021/logicalAssignment/logicalAssignment8.ts", + "./testTs/test/testts/es2021/logicalAssignment/logicalAssignment7.ts", + "./testTs/test/testts/es2021/logicalAssignment/logicalAssignment3.ts", + "./testTs/test/testts/es2021/logicalAssignment/logicalAssignment10.ts", + "./testTs/test/testts/es2021/logicalAssignment/logicalAssignment6.ts", + "./testTs/test/testts/es2021/logicalAssignment/logicalAssignment2.ts", + "./testTs/test/testts/es2021/logicalAssignment/logicalAssignment9.ts", + "./testTs/test/testts/es2021/logicalAssignment/logicalAssignment4.ts", + "./testTs/test/testts/async/es6/asyncWithVarShadowing_es6.ts", + "./testTs/test/testts/jsdoc/moduleExportsElementAccessAssignment.ts", + "./testTs/test/testts/jsdoc/jsdocTwoLineTypedef.ts", + "./testTs/test/testts/jsdoc/tsNoCheckForTypescript.ts", + "./testTs/test/testts/jsdoc/typedefTagNested.ts", + "./testTs/test/testts/jsdoc/jsdocVariadicType.ts", + "./testTs/test/testts/jsdoc/enumTagUseBeforeDefCrash.ts", + "./testTs/test/testts/jsdoc/paramTagOnCallExpression.ts", + "./testTs/test/testts/jsdoc/checkJsdocParamOnVariableDeclaredFunctionExpression.ts", + "./testTs/test/testts/jsdoc/typeTagOnPropertyAssignment.ts", + "./testTs/test/testts/jsdoc/jsdocImportTypeReferenceToESModule.ts", + "./testTs/test/testts/jsdoc/jsdocTypeFromChainedAssignment3.ts", + "./testTs/test/testts/jsdoc/extendsTag1.ts", + "./testTs/test/testts/jsdoc/jsdocTemplateTag2.ts", + "./testTs/test/testts/jsdoc/seeTag2.ts", + "./testTs/test/testts/jsdoc/jsdocBindingInUnreachableCode.ts", + "./testTs/test/testts/jsdoc/jsdocParseHigherOrderFunction.ts", + "./testTs/test/testts/jsdoc/jsdocImportTypeReferenceToStringLiteral.ts", + "./testTs/test/testts/jsdoc/paramTagTypeResolution.ts", + "./testTs/test/testts/jsdoc/checkJsdocTypeTag3.ts", + "./testTs/test/testts/jsdoc/checkJsdocTypeTagOnObjectProperty1.ts", + "./testTs/test/testts/jsdoc/jsdocImportTypeReferenceToClassAlias.ts", + "./testTs/test/testts/jsdoc/enumTagOnExports.ts", + "./testTs/test/testts/jsdoc/jsdocTypeDefAtStartOfFile.ts", + "./testTs/test/testts/jsdoc/jsdocTypeReferenceExports.ts", + "./testTs/test/testts/jsdoc/callbackCrossModule.ts", + "./testTs/test/testts/jsdoc/callbackTag3.ts", + "./testTs/test/testts/jsdoc/jsdocParseParenthesizedJSDocParameter.ts", + "./testTs/test/testts/jsdoc/callbackTag1.ts", + "./testTs/test/testts/jsdoc/instantiateTemplateTagTypeParameterOnVariableStatement.ts", + "./testTs/test/testts/jsdoc/seeTag1.ts", + "./testTs/test/testts/jsdoc/enumTagOnExports2.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportedClassAliases.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsFunctions.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsReusesExistingNodesMappingJSDocTypes.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsSubclassWithExplicitNoArgumentConstructor.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsUniqueSymbolUsage.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsTypeAliases.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsFunctionWithDefaultAssignedMember.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportDefinePropertyEmit.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsFunctionsCjs.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsTypedefDescriptionsPreserved.ts", + "./testTs/test/testts/jsdoc/declarations/jsDeclarationsExportDoubleAssignmentInClosure.ts", + "./testTs/test/testts/override/override18.ts", + "./testTs/test/testts/override/override_js1.ts", + "./testTs/test/testts/override/override16.ts", + "./testTs/test/testts/es2019/globalThisTypeIndexAccess.ts", + "./testTs/test/testts/directives/multiline.tsx", + "./testTs/test/testts/directives/ts-expect-error-nocheck.ts", + "./testTs/test/testts/expressions/elementAccess/stringEnumInElementAccess01.ts", + "./testTs/test/testts/expressions/elementAccess/letIdentifierInElementAccess01.ts", + "./testTs/test/testts/expressions/conditonalOperator/conditionalOperatorConditoinIsStringType.ts", + "./testTs/test/testts/expressions/conditonalOperator/conditionalOperatorConditionIsBooleanType.ts", + "./testTs/test/testts/expressions/conditonalOperator/conditionalOperatorConditoinIsAnyType.ts", + "./testTs/test/testts/expressions/conditonalOperator/conditionalOperatorConditionIsNumberType.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardNarrowsPrimitiveIntersection.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardNarrowsToLiteralType.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInForStatement.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardNarrowsToLiteralTypeUnion.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardFunction.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInConditionalExpression.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInFunctionAndModuleBlock.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormTypeOfNumber.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInModule.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardNesting.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormIsTypeOnInterfaces.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormInstanceOfOnInterface.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormExpr1AndExpr2.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardRedundancy.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInRightOperandOfOrOrOperator.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormFunctionEquality.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInFunction.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardEnums.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardFunctionOfFormThis.ts", + "./testTs/test/testts/expressions/typeGuards/typePredicateASI.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardTautologicalConsistiency.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInDoStatement.ts", + "./testTs/test/testts/expressions/typeGuards/TypeGuardWithEnumUnion.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormTypeOfIsOrderIndependent.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFromPropNameInUnionType.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInGlobal.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInWhileStatement.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInClassMethods.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormTypeOfFunction.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormTypeOfPrimitiveSubtype.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardTypeOfUndefined.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormExpr1OrExpr2.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsInRightOperandOfAndAndOperator.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardOfFormNotExpr.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardsOnClassProperty.ts", + "./testTs/test/testts/expressions/typeGuards/typeGuardIntersectionTypes.ts", + "./testTs/test/testts/expressions/asOperator/asOperator3.ts", + "./testTs/test/testts/expressions/asOperator/asOpEmitParens.ts", + "./testTs/test/testts/expressions/asOperator/asOperator1.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInAsyncGenerator.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator3.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator10.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterInitializer.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator9.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator7.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator12.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator_not_strict.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator1.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperatorInParameterBindingPattern.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator2.ts", + "./testTs/test/testts/expressions/nullishCoalescingOperator/nullishCoalescingOperator8.ts", + "./testTs/test/testts/expressions/binaryOperators/additionOperator/additionOperatorWithAnyAndEveryType.ts", + "./testTs/test/testts/expressions/binaryOperators/additionOperator/additionOperatorWithNumberAndEnum.ts", + "./testTs/test/testts/expressions/binaryOperators/additionOperator/additionOperatorWithStringAndEveryType.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithOneOperandIsUndefined.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithOneOperandIsAny.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithTwoOperandsAreAny.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnProperty.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithIdenticalObjects.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithNumericLiteral.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeObjectOnOptionalProperty.ts", + "./testTs/test/testts/expressions/binaryOperators/comparisonOperator/comparisonOperatorWithSubtypeEnumAndNumber.ts", + "./testTs/test/testts/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithLHSIsTypeParameter.ts", + "./testTs/test/testts/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithAny.ts", + "./testTs/test/testts/expressions/binaryOperators/instanceofOperator/instanceofOperatorWithRHSIsSubtypeOfFunction.ts", + "./testTs/test/testts/expressions/binaryOperators/logicalOrOperator/logicalOrExpressionIsNotContextuallyTyped.ts", + "./testTs/test/testts/expressions/binaryOperators/logicalOrOperator/logicalOrOperatorWithTypeParameters.ts", + "./testTs/test/testts/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithEnumUnion.ts", + "./testTs/test/testts/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithEnum.ts", + "./testTs/test/testts/expressions/binaryOperators/arithmeticOperator/arithmeticOperatorWithAnyAndNumber.ts", + "./testTs/test/testts/expressions/binaryOperators/inOperator/inOperatorWithValidOperands.ts", + "./testTs/test/testts/expressions/arrayLiterals/arrayLiterals2ES5.ts", + "./testTs/test/testts/expressions/arrayLiterals/arrayLiteralInference.ts", + "./testTs/test/testts/expressions/assignmentOperator/assignmentGenericLookupTypeNarrowing.ts", + "./testTs/test/testts/expressions/assignmentOperator/compoundAssignmentLHSIsReference.ts", + "./testTs/test/testts/expressions/assignmentOperator/assignmentLHSIsReference.ts", + "./testTs/test/testts/expressions/assignmentOperator/assignmentTypeNarrowing.ts", + "./testTs/test/testts/expressions/unaryOperators/decrementOperator/decrementOperatorWithAnyOtherType.ts", + "./testTs/test/testts/expressions/unaryOperators/decrementOperator/decrementOperatorWithNumberType.ts", + "./testTs/test/testts/expressions/unaryOperators/incrementOperator/incrementOperatorWithNumberType.ts", + "./testTs/test/testts/expressions/unaryOperators/incrementOperator/incrementOperatorWithAnyOtherType.ts", + "./testTs/test/testts/expressions/unaryOperators/voidOperator/voidOperatorWithNumberType.ts", + "./testTs/test/testts/expressions/unaryOperators/voidOperator/voidOperatorWithEnumType.ts", + "./testTs/test/testts/expressions/unaryOperators/voidOperator/voidOperatorWithBooleanType.ts", + "./testTs/test/testts/expressions/unaryOperators/voidOperator/voidOperatorWithStringType.ts", + "./testTs/test/testts/expressions/optionalChaining/optionalChainingInParameterInitializer.ts", + "./testTs/test/testts/expressions/optionalChaining/optionalChainingInference.ts", + "./testTs/test/testts/expressions/optionalChaining/optionalChainingInParameterBindingPattern.ts", + "./testTs/test/testts/expressions/optionalChaining/propertyAccessChain/propertyAccessChain.2.ts", + "./testTs/test/testts/expressions/optionalChaining/propertyAccessChain/propertyAccessChain.ts", + "./testTs/test/testts/expressions/optionalChaining/callChain/callChain.2.ts", + "./testTs/test/testts/expressions/optionalChaining/callChain/parentheses.ts", + "./testTs/test/testts/expressions/optionalChaining/callChain/callChainInference.ts", + "./testTs/test/testts/expressions/optionalChaining/callChain/callChain.ts", + "./testTs/test/testts/expressions/optionalChaining/elementAccessChain/elementAccessChain.2.ts", + "./testTs/test/testts/expressions/optionalChaining/elementAccessChain/elementAccessChain.ts", + "./testTs/test/testts/expressions/functionCalls/typeArgumentInferenceTransitiveConstraints.ts", + "./testTs/test/testts/expressions/functionCalls/callWithSpread.ts", + "./testTs/test/testts/expressions/functions/typeOfThisInFunctionExpression.ts", + "./testTs/test/testts/expressions/functions/contextuallyTypedFunctionExpressionsAndReturnAnnotations.ts", + "./testTs/test/testts/expressions/functions/arrowFunctionExpressions.ts", + "./testTs/test/testts/expressions/functions/voidParamAssignmentCompatibility.ts", + "./testTs/test/testts/expressions/functions/contextuallyTypedIife.ts", + "./testTs/test/testts/expressions/superCalls/superCalls.ts", + "./testTs/test/testts/expressions/newOperator/newOperatorConformance.ts", + "./testTs/test/testts/expressions/contextualTyping/functionExpressionContextualTyping1.ts", + "./testTs/test/testts/expressions/contextualTyping/superCallParameterContextualTyping1.ts", + "./testTs/test/testts/expressions/contextualTyping/superCallParameterContextualTyping3.ts", + "./testTs/test/testts/expressions/contextualTyping/generatedContextualTyping.ts", + "./testTs/test/testts/expressions/contextualTyping/functionExpressionContextualTyping3.ts", + "./testTs/test/testts/emitter/es2015/asyncGenerators/emitter.asyncGenerators.functionExpressions.es2015.ts", + "./testTs/test/testts/emitter/es2015/asyncGenerators/emitter.asyncGenerators.classMethods.es2015.ts", + "./testTs/test/testts/emitter/es2015/asyncGenerators/emitter.asyncGenerators.objectLiteralMethods.es2015.ts", + "./testTs/test/testts/emitter/es2015/asyncGenerators/emitter.asyncGenerators.functionDeclarations.es2015.ts", + "./testTs/test/testts/declarationEmit/classDoesNotDependOnPrivateMember.ts", + "./testTs/test/testts/interfaces/declarationMerging/twoMergedInterfacesWithDifferingOverloads2.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInterfacesWithConflictingPropertyNames2.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInterfacesWithIndexers.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergeTwoInterfaces2.ts", + "./testTs/test/testts/interfaces/declarationMerging/twoMergedInterfacesWithDifferingOverloads.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergeTwoInterfaces.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergeThreeInterfaces.ts", + "./testTs/test/testts/interfaces/declarationMerging/genericAndNonGenericInterfaceWithTheSameName2.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInterfacesWithMultipleBases.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergeThreeInterfaces2.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInterfacesWithMultipleBases2.ts", + "./testTs/test/testts/interfaces/declarationMerging/mergedInterfacesWithMultipleBases3.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface03.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithCallSignaturesThatHidesBaseSignature.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithCallSignaturesThatHidesBaseSignature2.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithOverloadedCallAndConstructSignatures.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithPropertyOfEveryType.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithConstructSignaturesThatHidesBaseSignature2.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/derivedInterfaceDoesNotHideBaseSignatures.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface01.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceThatHidesBaseProperty.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithConstructSignaturesThatHidesBaseSignature.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithCallAndConstructSignature.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceWithSpecializedCallAndConstructSignatures.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface04.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/interfaceExtendsObjectIntersection.ts", + "./testTs/test/testts/interfaces/interfaceDeclarations/asiPreventsParsingAsInterface02.ts", + "./testTs/test/testts/parser/ecmascript2021/numericSeparators/parser.numericSeparators.binary.ts", + "./testTs/test/testts/parser/ecmascript2021/numericSeparators/parser.numericSeparators.hex.ts", + "./testTs/test/testts/parser/ecmascript2021/numericSeparators/parser.numericSeparators.octal.ts", + "./testTs/test/testts/parser/ecmascript2021/numericSeparators/parser.numericSeparators.decimal.ts", + "./testTs/test/testts/parser/ecmascript5/parserOptionalTypeMembers1.ts", + "./testTs/test/testts/parser/ecmascript5/parserSyntaxWalker.generated.ts", + "./testTs/test/testts/parser/ecmascript5/parservoidInQualifiedName0.ts", + "./testTs/test/testts/parser/ecmascript5/parserExportAsFunctionIdentifier.ts", + "./testTs/test/testts/parser/ecmascript5/parserNotRegex2.ts", + "./testTs/test/testts/parser/ecmascript5/parserOverloadOnConstants1.ts", + "./testTs/test/testts/parser/ecmascript5/parserSbp_7.9_A9_T3.ts", + "./testTs/test/testts/parser/ecmascript5/parserParenthesizedVariableAndFunctionInTernary.ts", + "./testTs/test/testts/parser/ecmascript5/parserDebuggerStatement1.ts", + "./testTs/test/testts/parser/ecmascript5/parserEmptyStatement1.ts", + "./testTs/test/testts/parser/ecmascript5/parserUnicode2.ts", + "./testTs/test/testts/parser/ecmascript5/parserKeywordsAsIdentifierName1.ts", + "./testTs/test/testts/parser/ecmascript5/parserEmptyFile1.ts", + "./testTs/test/testts/parser/ecmascript5/parserS7.6.1.1_A1.10.ts", + "./testTs/test/testts/parser/ecmascript5/parserVoidExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/parserDebuggerStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/parserInExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/TupleTypes/TupleType5.ts", + "./testTs/test/testts/parser/ecmascript5/TupleTypes/TupleType2.ts", + "./testTs/test/testts/parser/ecmascript5/TupleTypes/TupleType3.ts", + "./testTs/test/testts/parser/ecmascript5/TupleTypes/TupleType1.ts", + "./testTs/test/testts/parser/ecmascript5/MemberVariableDeclarations/parserMemberVariableDeclaration5.ts", + "./testTs/test/testts/parser/ecmascript5/ObjectTypes/parserObjectType1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/parserModifierOnPropertySignature2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic5.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/AccessibilityAfterStatic/parserAccessibilityAfterStatic2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/IncompleteMemberVariables/parserErrorRecovery_IncompleteMemberVariable1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement3.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement4.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement1.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/VariableLists/parserVariableStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArrowFunctions/ArrowFunction4.ts", + "./testTs/test/testts/parser/ecmascript5/ErrorRecovery/ArrowFunctions/parserX_ArrowFunction4.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration26.ts", + "./testTs/test/testts/parser/ecmascript5/ClassDeclarations/parserClassDeclaration7.d.ts", + "./testTs/test/testts/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment3.ts", + "./testTs/test/testts/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment4.ts", + "./testTs/test/testts/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment1.ts", + "./testTs/test/testts/parser/ecmascript5/PropertyAssignments/parserFunctionPropertyAssignment2.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression13.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression3.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression12.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression4.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression2.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression1.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression10.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression6.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression15.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression14.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression8.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression5.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression11.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression7.ts", + "./testTs/test/testts/parser/ecmascript5/ArrayLiteralExpressions/parserArrayLiteralExpression9.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserInterfaceKeywordInEnum.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration5.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnum6.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserInterfaceKeywordInEnum1.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnum2.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration1.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration2.d.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration3.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnum1.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnum3.ts", + "./testTs/test/testts/parser/ecmascript5/EnumDeclarations/parserEnumDeclaration6.ts", + "./testTs/test/testts/parser/ecmascript5/RegularExpressions/parserRegularExpressionDivideAmbiguity6.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser509546_1.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser509546.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser645086_4.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser643728.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser509546_2.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser645086_3.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser596700.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parserNotHexLiteral1.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser630933.ts", + "./testTs/test/testts/parser/ecmascript5/RegressionTests/parser579071.ts", + "./testTs/test/testts/parser/ecmascript5/Protected/Protected8.ts", + "./testTs/test/testts/parser/ecmascript5/Protected/Protected9.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature12.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature9.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature5.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature6.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature8.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature4.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature10.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature1.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature11.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature3.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature7.ts", + "./testTs/test/testts/parser/ecmascript5/PropertySignatures/parserPropertySignature2.ts", + "./testTs/test/testts/parser/ecmascript5/Fuzz/parser768531.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration11.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration4.d.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration9.ts", + "./testTs/test/testts/parser/ecmascript5/VariableDeclarations/parserVariableDeclaration7.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration11.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration12.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration7.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration2.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration9.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration3.d.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration8.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration4.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModule1.ts", + "./testTs/test/testts/parser/ecmascript5/ModuleDeclarations/parserModuleDeclaration6.ts", + "./testTs/test/testts/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration8.ts", + "./testTs/test/testts/parser/ecmascript5/FunctionDeclarations/parserFunctionDeclaration1.d.ts", + "./testTs/test/testts/parser/ecmascript5/ObjectLiterals/parserObjectLiterals1.ts", + "./testTs/test/testts/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration5.ts", + "./testTs/test/testts/parser/ecmascript5/InterfaceDeclarations/parserInterfaceDeclaration7.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature7.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature4.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature9.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature1.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature5.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature3.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature8.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature12.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature10.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature2.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature11.ts", + "./testTs/test/testts/parser/ecmascript5/MethodSignatures/parserMethodSignature6.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity1.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity5.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity10.ts", + "./testTs/test/testts/parser/ecmascript5/Generics/parserGreaterThanTokenAmbiguity6.ts", + "./testTs/test/testts/parser/ecmascript5/Expressions/parserUnaryExpression6.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/parserDoStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/LabeledStatements/parser_duplicateLabel4.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueLabel.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement3.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget3.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueTarget4.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/ContinueStatements/parser_continueInIterationStatement1.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget1.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget3.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement3.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget2.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakTarget4.ts", + "./testTs/test/testts/parser/ecmascript5/Statements/BreakStatements/parser_breakInIterationOrSwitchStatement1.ts", + "./testTs/test/testts/salsa/moduleExportAssignment2.ts", + "./testTs/test/testts/salsa/inferringClassMembersFromAssignments8.ts", + "./testTs/test/testts/salsa/moduleExportAssignment3.ts", + "./testTs/test/testts/salsa/typeFromContextualThisType.ts", + "./testTs/test/testts/salsa/malformedTags.ts", + "./testTs/test/testts/salsa/moduleExportAlias5.ts", + "./testTs/test/testts/salsa/mixedPropertyElementAccessAssignmentDeclaration.ts", + "./testTs/test/testts/salsa/prototypePropertyAssignmentMergedTypeReference.ts", + "./testTs/test/testts/salsa/moduleExportAssignment5.ts", + "./testTs/test/testts/salsa/propertyAssignmentUseParentType1.ts", + "./testTs/test/testts/salsa/moduleExportPropertyAssignmentDefault.ts", + "./testTs/test/testts/salsa/moduleExportAlias4.ts", + "./testTs/test/testts/salsa/moduleExportAliasExports.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment20.ts", + "./testTs/test/testts/salsa/moduleExportDuplicateAlias2.ts", + "./testTs/test/testts/salsa/moduleExportAliasElementAccessExpression.ts", + "./testTs/test/testts/salsa/propertyAssignmentOnParenthesizedNumber.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment30.ts", + "./testTs/test/testts/salsa/requireAssertsFromTypescript.ts", + "./testTs/test/testts/salsa/moduleExportAlias3.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment39.ts", + "./testTs/test/testts/salsa/binderUninitializedModuleExportsAssignment.ts", + "./testTs/test/testts/salsa/moduleExportAssignment4.ts", + "./testTs/test/testts/salsa/typeFromPropertyAssignment38.ts", + "./testTs/test/testts/salsa/commonJSImportExportedClassExpression.ts", + "./testTs/test/testts/salsa/moduleExportDuplicateAlias3.ts", + "./testTs/test/testts/salsa/jsdocConstructorFunctionTypeReference.ts", + "./testTs/test/testts/salsa/requireTwoPropertyAccesses.ts", + "./testTs/test/testts/functions/functionWithUseStrictAndSimpleParameterList.ts", + "./testTs/test/testts/functions/strictBindCallApply2.ts", + "./testTs/test/testts/functions/functionImplementations.ts", + "./testTs/test/testts/test/test_full.ts", + "./testTs/test/testts/es6/shorthandPropertyAssignment/objectLiteralShorthandPropertiesWithModule.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedDivision.ts", + "./testTs/test/testts/es6/templates/templateStringInPropertyAssignment.ts", + "./testTs/test/testts/es6/templates/templateStringInParentheses.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedTypeAssertionOnAddition.ts", + "./testTs/test/testts/es6/templates/templateStringInUnaryPlus.ts", + "./testTs/test/testts/es6/templates/templateStringInConditional.ts", + "./testTs/test/testts/es6/templates/templateStringWhitespaceEscapes1.ts", + "./testTs/test/testts/es6/templates/templateStringInTypeAssertion.ts", + "./testTs/test/testts/es6/templates/templateStringMultiline1.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithOverloadResolution2.ts", + "./testTs/test/testts/es6/templates/templateStringTermination3.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithTagsTypedAsAny.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithTypedTags.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedMultiplication.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedObjectLiteral.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedArray.ts", + "./testTs/test/testts/es6/templates/templateStringWithPropertyAccess.ts", + "./testTs/test/testts/es6/templates/templateStringMultiline3.ts", + "./testTs/test/testts/es6/templates/templateStringTermination2.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsWithManyCallAndMemberExpressions.ts", + "./testTs/test/testts/es6/templates/templateStringControlCharacterEscapes03.ts", + "./testTs/test/testts/es6/templates/templateStringTermination4.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedInOperator.ts", + "./testTs/test/testts/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes01.ts", + "./testTs/test/testts/es6/templates/templateStringInSwitchAndCase.ts", + "./testTs/test/testts/es6/templates/templateStringInArrowFunction.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedComments.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedModulo.ts", + "./testTs/test/testts/es6/templates/templateStringTermination5.ts", + "./testTs/test/testts/es6/templates/templateStringInInOperator.ts", + "./testTs/test/testts/es6/templates/templateStringWithCommentsInArrowFunction.ts", + "./testTs/test/testts/es6/templates/templateStringInArray.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedAddition.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedUnaryPlus.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmptyLiteralPortions.ts", + "./testTs/test/testts/es6/templates/templateStringPlainCharactersThatArePartsOfEscapes02.ts", + "./testTs/test/testts/es6/templates/templateStringInWhile.ts", + "./testTs/test/testts/es6/templates/templateStringMultiline2.ts", + "./testTs/test/testts/es6/templates/taggedTemplateUntypedTagCall01.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedTemplateString.ts", + "./testTs/test/testts/es6/templates/templateStringInTypeOf.ts", + "./testTs/test/testts/es6/templates/templateStringInFunctionExpression.ts", + "./testTs/test/testts/es6/templates/taggedTemplateStringsPlainCharactersThatArePartsOfEscapes02.ts", + "./testTs/test/testts/es6/templates/templateStringBinaryOperations.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedTypeOfOperator.ts", + "./testTs/test/testts/es6/templates/templateStringControlCharacterEscapes04.ts", + "./testTs/test/testts/es6/templates/templateStringControlCharacterEscapes02.ts", + "./testTs/test/testts/es6/templates/templateStringControlCharacterEscapes01.ts", + "./testTs/test/testts/es6/templates/templateStringWithOpenCommentInStringPortion.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedNewOperator.ts", + "./testTs/test/testts/es6/templates/templateStringInIndexExpression.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedConditional.ts", + "./testTs/test/testts/es6/templates/templateStringTermination1.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedFunctionExpression.ts", + "./testTs/test/testts/es6/templates/templateStringWithEmbeddedArrowFunction.ts", + "./testTs/test/testts/es6/templates/templateStringInEqualityChecks.ts", + "./testTs/test/testts/es6/templates/templateStringWithBackslashEscapes01.ts", + "./testTs/test/testts/es6/templates/templateStringWhitespaceEscapes2.ts", + "./testTs/test/testts/es6/classDeclaration/superCallBeforeThisAccessing1.ts", + "./testTs/test/testts/es6/classDeclaration/superCallBeforeThisAccessing8.ts", + "./testTs/test/testts/es6/classDeclaration/superCallBeforeThisAccessing5.ts", + "./testTs/test/testts/es6/classDeclaration/superCallBeforeThisAccessing2.ts", + "./testTs/test/testts/es6/classDeclaration/emitClassDeclarationWithPropertyAccessInHeritageClause1.ts", + "./testTs/test/testts/es6/Symbols/symbolProperty60.ts", + "./testTs/test/testts/es6/spread/arrayLiteralSpreadES5iterable.ts", + "./testTs/test/testts/es6/spread/arrayLiteralSpread.ts", + "./testTs/test/testts/es6/destructuring/objectBindingPatternKeywordIdentifiers05.ts", + "./testTs/test/testts/es6/destructuring/restElementWithAssignmentPattern5.ts", + "./testTs/test/testts/es6/destructuring/destructuringWithLiteralInitializers.ts", + "./testTs/test/testts/es6/destructuring/emptyArrayBindingPatternParameter04.ts", + "./testTs/test/testts/es6/destructuring/nonIterableRestElement1.ts", + "./testTs/test/testts/es6/destructuring/restElementWithAssignmentPattern3.ts", + "./testTs/test/testts/es6/destructuring/destructuringEvaluationOrder.ts", + "./testTs/test/testts/es6/destructuring/destructuringInFunctionType.ts", + "./testTs/test/testts/es6/destructuring/destructuringVoid.ts", + "./testTs/test/testts/es6/destructuring/destructuringVariableDeclaration1ES5.ts", + "./testTs/test/testts/es6/destructuring/destructuringObjectBindingPatternAndAssignment1ES5.ts", + "./testTs/test/testts/es6/destructuring/destructuringCatch.ts", + "./testTs/test/testts/es6/destructuring/arrayAssignmentPatternWithAny.ts", + "./testTs/test/testts/es6/destructuring/objectBindingPatternKeywordIdentifiers06.ts", + "./testTs/test/testts/es6/destructuring/declarationInAmbientContext.ts", + "./testTs/test/testts/es6/destructuring/restElementWithBindingPattern.ts", + "./testTs/test/testts/es6/destructuring/destructuringObjectAssignmentPatternWithNestedSpread.ts", + "./testTs/test/testts/es6/destructuring/destructuringVariableDeclaration1ES5iterable.ts", + "./testTs/test/testts/enums/enumMerging.ts", + "./testTs/test/testts/enums/enumConstantMemberWithTemplateLiteralsEmitDeclaration.ts", + "./testTs/test/testts/enums/enumBasics.ts", + "./testTs/test/testts/enums/enumClassification.ts", + "./testTs/test/testts/enums/enumConstantMemberWithStringEmitDeclaration.ts", + "./testTs/test/testts/constEnums/constEnum1.ts", + "./testTs/test/testts/constEnums/constEnum4.ts" ] } \ No newline at end of file diff --git a/testTs/test/testjs/moduletest/allocatearraybuffer/case1.js b/testTs/test/testjs/moduletest/allocatearraybuffer/case1.js new file mode 100644 index 0000000000000000000000000000000000000000..d16629afe8561d5ada7115947aeb7399665dc236 --- /dev/null +++ b/testTs/test/testjs/moduletest/allocatearraybuffer/case1.js @@ -0,0 +1,18 @@ +/* + * Copyright (c) 2022 Huawei Device Co., Ltd. + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +var newTarget = function() {}.bind(null); +var arrayBuffer = Reflect.construct(ArrayBuffer, [16], newTarget); +print(arrayBuffer.length); \ No newline at end of file diff --git a/testTs/test/testjs/moduletest/allocatearraybuffer/case1_expect.txt b/testTs/test/testjs/moduletest/allocatearraybuffer/case1_expect.txt new file mode 100644 index 0000000000000000000000000000000000000000..417b7b5370df81a7316ee9f983437444afdae432 --- /dev/null +++ b/testTs/test/testjs/moduletest/allocatearraybuffer/case1_expect.txt @@ -0,0 +1 @@ +undefined diff --git a/testTs/utils.py b/testTs/utils.py index 6888fd9781215433ed0eadd1b950e75ca6c26484..ebc02e091afa7c4098299d6a384027f77204a6ab 100644 --- a/testTs/utils.py +++ b/testTs/utils.py @@ -97,3 +97,25 @@ def npm_install(cwd): os.chdir(WORK_PATH) except BaseException as e: print(e) + + +def process_tool_path(tool_path): + if tool_path.startswith('../'): + tool_path_list = tool_path.split(os.sep) + dir_level = tool_path.count('..') + for i in range(dir_level): + del tool_path_list[0] + tool_path = os.sep.join(tool_path_list) + frontend_tool_path = f'{CODE_ROOT}/{tool_path}' + return frontend_tool_path + return tool_path + + +def export_path(): + ld_library_path = ':'.join(LD_LIBRARY_PATH_LIST) + try: + os.chdir(CODE_ROOT) + os.environ['LD_LIBRARY_PATH'] = ld_library_path + os.chdir(WORK_PATH) + except BaseException as e: + print(e)