Skip to content

Commit 587088b

Browse files
committed
Update affected baselines
1 parent 10fccc5 commit 587088b

File tree

2 files changed

+5
-11
lines changed

2 files changed

+5
-11
lines changed
Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,13 @@
11
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnfinishedTypeNameBeforeKeyword1.ts(1,8): error TS2503: Cannot find namespace 'TypeModule1'.
2-
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnfinishedTypeNameBeforeKeyword1.ts(2,8): error TS1005: '=' expected.
3-
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnfinishedTypeNameBeforeKeyword1.ts(2,8): error TS2304: Cannot find name 'TypeModule2'.
4-
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnfinishedTypeNameBeforeKeyword1.ts(2,20): error TS1005: ',' expected.
2+
tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnfinishedTypeNameBeforeKeyword1.ts(1,20): error TS1003: Identifier expected.
53

64

7-
==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnfinishedTypeNameBeforeKeyword1.ts (4 errors) ====
5+
==== tests/cases/conformance/parser/ecmascript5/ErrorRecovery/parserUnfinishedTypeNameBeforeKeyword1.ts (2 errors) ====
86
var x: TypeModule1.
97
~~~~~~~~~~~
108
!!! error TS2503: Cannot find namespace 'TypeModule1'.
9+
10+
!!! error TS1003: Identifier expected.
1111
module TypeModule2 {
12-
~~~~~~~~~~~
13-
!!! error TS1005: '=' expected.
14-
~~~~~~~~~~~
15-
!!! error TS2304: Cannot find name 'TypeModule2'.
16-
~
17-
!!! error TS1005: ',' expected.
1812
}
1913

tests/baselines/reference/parserUnfinishedTypeNameBeforeKeyword1.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ module TypeModule2 {
55

66

77
//// [parserUnfinishedTypeNameBeforeKeyword1.js]
8-
var x = TypeModule2, _a = void 0;
8+
var x;

0 commit comments

Comments
 (0)