@@ -3,7 +3,7 @@ commit: f5ccf434
33parser_typescript Summary:
44AST Parsed : 9844/9845 (99.99%)
55Positive Passed: 9836/9845 (99.91%)
6- Negative Passed: 1498 /2549 (58.77 %)
6+ Negative Passed: 1500 /2549 (58.85 %)
77Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/FunctionDeclaration3.ts
88
99Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/FunctionDeclaration4.ts
@@ -342,8 +342,6 @@ Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/es6ModuleInt
342342
343343Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/es6ModuleInternalNamedImports2.ts
344344
345- Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/escapedIdentifiers.ts
346-
347345Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/esmNoSynthesizedDefault.ts
348346
349347Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/excessPropertyCheckIntersectionWithRecursiveType.ts
@@ -664,8 +662,6 @@ Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/moduleAugmen
664662
665663Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/moduleAugmentationImportsAndExports3.ts
666664
667- Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/moduleKeywordDeprecated.ts
668-
669665Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/moduleProperty2.ts
670666
671667Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/moduleResolutionWithExtensions_unexpected2.ts
@@ -5808,6 +5804,14 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/statements/Va
58085804 · ────────────────
58095805 ╰────
58105806
5807+ × TS(1540): A 'namespace' declaration should not be declared using the 'module' keyword. Please use the 'namespace' keyword instead.
5808+ ╭─[typescript/tests/cases/compiler/escapedIdentifiers.ts:25:9]
5809+ 24 │ }
5810+ 25 │ declare module moduleType\u0032 {
5811+ · ──────
5812+ 26 │ export var baz2: number;
5813+ ╰────
5814+
58115815 × TS(1030): 'export' modifier already seen.
58125816 ╭─[typescript/tests/cases/compiler/exportAlreadySeen.ts:2:12]
58135817 1 │ namespace M {
@@ -8078,6 +8082,38 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/statements/Va
80788082 13 │
80798083 ╰────
80808084
8085+ × TS(1540): A 'namespace' declaration should not be declared using the 'module' keyword. Please use the 'namespace' keyword instead.
8086+ ╭─[typescript/tests/cases/compiler/moduleKeywordDeprecated.ts:2:1]
8087+ 1 │ // Error
8088+ 2 │ module notok { }
8089+ · ──────
8090+ 3 │ module not.ok { }
8091+ ╰────
8092+
8093+ × TS(1540): A 'namespace' declaration should not be declared using the 'module' keyword. Please use the 'namespace' keyword instead.
8094+ ╭─[typescript/tests/cases/compiler/moduleKeywordDeprecated.ts:3:1]
8095+ 2 │ module notok { }
8096+ 3 │ module not.ok { }
8097+ · ──────
8098+ 4 │ declare module bad { }
8099+ ╰────
8100+
8101+ × TS(1540): A 'namespace' declaration should not be declared using the 'module' keyword. Please use the 'namespace' keyword instead.
8102+ ╭─[typescript/tests/cases/compiler/moduleKeywordDeprecated.ts:4:9]
8103+ 3 │ module not.ok { }
8104+ 4 │ declare module bad { }
8105+ · ──────
8106+ 5 │ declare module also.bad { }
8107+ ╰────
8108+
8109+ × TS(1540): A 'namespace' declaration should not be declared using the 'module' keyword. Please use the 'namespace' keyword instead.
8110+ ╭─[typescript/tests/cases/compiler/moduleKeywordDeprecated.ts:5:9]
8111+ 4 │ declare module bad { }
8112+ 5 │ declare module also.bad { }
8113+ · ──────
8114+ 6 │
8115+ ╰────
8116+
80818117 × Expected a semicolon or an implicit semicolon after a statement, but found none
80828118 ╭─[typescript/tests/cases/compiler/moduleKeywordRepeatError.ts:3:14]
80838119 2 │
0 commit comments