@@ -3,7 +3,7 @@ commit: a709f989
33parser_typescript Summary:
44AST Parsed : 6469/6479 (99.85%)
55Positive Passed: 6458/6479 (99.68%)
6- Negative Passed: 1226 /5715 (21.45 %)
6+ Negative Passed: 1227 /5715 (21.47 %)
77Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration10.ts
88Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration11.ts
99Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/ClassDeclaration13.ts
@@ -1910,7 +1910,6 @@ Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/statics.ts
19101910Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/staticsNotInScopeInClodule.ts
19111911Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/strictFunctionTypesErrors.ts
19121912Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/strictModeInConstructor.ts
1913- Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/strictModeReservedWordInModuleDeclaration.ts
19141913Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/strictNullEmptyDestructuring.ts
19151914Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/strictNullNotNullIndexTypeNoLib.ts
19161915Expect Syntax Error: tasks/coverage/typescript/tests/cases/compiler/strictOptionalProperties3.ts
@@ -11845,6 +11844,37 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/salsa/private
1184511844 · ──────
1184611845 ╰────
1184711846
11847+ × The keyword 'public' is reserved
11848+ ╭─[typescript/tests/cases/compiler/strictModeReservedWordInModuleDeclaration.ts:2:8]
11849+ 1 │ "use strict"
11850+ 2 │ module public { }
11851+ · ──────
11852+ 3 │ module private { }
11853+ ╰────
11854+
11855+ × The keyword 'private' is reserved
11856+ ╭─[typescript/tests/cases/compiler/strictModeReservedWordInModuleDeclaration.ts:3:8]
11857+ 2 │ module public { }
11858+ 3 │ module private { }
11859+ · ───────
11860+ 4 │ module public.whatever {
11861+ ╰────
11862+
11863+ × The keyword 'public' is reserved
11864+ ╭─[typescript/tests/cases/compiler/strictModeReservedWordInModuleDeclaration.ts:4:8]
11865+ 3 │ module private { }
11866+ 4 │ module public.whatever {
11867+ · ──────
11868+ 5 │ }
11869+ ╰────
11870+
11871+ × The keyword 'private' is reserved
11872+ ╭─[typescript/tests/cases/compiler/strictModeReservedWordInModuleDeclaration.ts:6:8]
11873+ 5 │ }
11874+ 6 │ module private.public.foo { }
11875+ · ───────
11876+ ╰────
11877+
1184811878 × The keyword 'package' is reserved
1184911879 ╭─[typescript/tests/cases/compiler/strictModeWordInImportDeclaration.ts:2:13]
1185011880 1 │ "use strict"
@@ -12865,21 +12895,20 @@ Expect to Parse: tasks/coverage/typescript/tests/cases/conformance/salsa/private
1286512895 3 │
1286612896 ╰────
1286712897
12868- × Expected a semicolon or an implicit semicolon after a statement, but found none
12869- ╭─[typescript/tests/cases/conformance/ambient/ambientModuleDeclarationWithReservedIdentifierInDottedPath.ts:11:8 ]
12870- 10 │
12871- 11 │ declare module debugger {} // still an error
12872- · ▲
12873- ╰────
12874- help: Try insert a semicolon here
12898+ × Unexpected token
12899+ ╭─[typescript/tests/cases/conformance/ambient/ambientModuleDeclarationWithReservedIdentifierInDottedPath.ts:3:23 ]
12900+ 2 │
12901+ 3 │ declare module chrome. debugger {
12902+ · ────────
12903+ 4 │ declare var tabId: number;
12904+ ╰────
1287512905
12876- × Expected a semicolon or an implicit semicolon after a statement, but found none
12877- ╭─[typescript/tests/cases/conformance/ambient/ambientModuleDeclarationWithReservedIdentifierInDottedPath2.ts:9:8 ]
12878- 8 │
12879- 9 │ declare namespace debugger {} // still an error
12880- · ▲
12906+ × Unexpected token
12907+ ╭─[typescript/tests/cases/conformance/ambient/ambientModuleDeclarationWithReservedIdentifierInDottedPath2.ts:1:26 ]
12908+ 1 │ declare namespace chrome.debugger {
12909+ · ────────
12910+ 2 │ declare var tabId: number;
1288112911 ╰────
12882- help: Try insert a semicolon here
1288312912
1288412913 × Cannot use `await` as an identifier in an async context
1288512914 ╭─[typescript/tests/cases/conformance/async/es2017/asyncArrowFunction/asyncArrowFunction5_es2017.ts:1:18]
0 commit comments