Skip to content

Commit

Permalink
update baselines
Browse files Browse the repository at this point in the history
  • Loading branch information
Andarist committed Dec 20, 2024
1 parent a4a7992 commit 170e0aa
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ invalidLetInForOfAndForIn_ES5.ts(5,13): error TS1005: ',' expected.
invalidLetInForOfAndForIn_ES5.ts(5,14): error TS1181: Array element destructuring pattern expected.
invalidLetInForOfAndForIn_ES5.ts(5,14): error TS2695: Left side of comma operator is unused and has no side effects.
invalidLetInForOfAndForIn_ES5.ts(5,14): error TS2695: Left side of comma operator is unused and has no side effects.
invalidLetInForOfAndForIn_ES5.ts(5,14): error TS2872: This kind of expression is always truthy.
invalidLetInForOfAndForIn_ES5.ts(5,19): error TS1005: ';' expected.
invalidLetInForOfAndForIn_ES5.ts(5,20): error TS1128: Declaration or statement expected.


==== invalidLetInForOfAndForIn_ES5.ts (6 errors) ====
==== invalidLetInForOfAndForIn_ES5.ts (7 errors) ====
// This should be an error
// More details: http://www.ecma-international.org/ecma-262/6.0/#sec-iteration-statements

Expand All @@ -20,6 +21,8 @@ invalidLetInForOfAndForIn_ES5.ts(5,20): error TS1128: Declaration or statement e
!!! error TS2695: Left side of comma operator is unused and has no side effects.
~~~
!!! error TS2695: Left side of comma operator is unused and has no side effects.
~~~~~
!!! error TS2872: This kind of expression is always truthy.
~
!!! error TS1005: ';' expected.
~
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,12 @@ invalidLetInForOfAndForIn_ES6.ts(5,13): error TS1005: ',' expected.
invalidLetInForOfAndForIn_ES6.ts(5,14): error TS1181: Array element destructuring pattern expected.
invalidLetInForOfAndForIn_ES6.ts(5,14): error TS2695: Left side of comma operator is unused and has no side effects.
invalidLetInForOfAndForIn_ES6.ts(5,14): error TS2695: Left side of comma operator is unused and has no side effects.
invalidLetInForOfAndForIn_ES6.ts(5,14): error TS2872: This kind of expression is always truthy.
invalidLetInForOfAndForIn_ES6.ts(5,19): error TS1005: ';' expected.
invalidLetInForOfAndForIn_ES6.ts(5,20): error TS1128: Declaration or statement expected.


==== invalidLetInForOfAndForIn_ES6.ts (6 errors) ====
==== invalidLetInForOfAndForIn_ES6.ts (7 errors) ====
// This should be an error
// More details: http://www.ecma-international.org/ecma-262/6.0/#sec-iteration-statements

Expand All @@ -20,6 +21,8 @@ invalidLetInForOfAndForIn_ES6.ts(5,20): error TS1128: Declaration or statement e
!!! error TS2695: Left side of comma operator is unused and has no side effects.
~~~
!!! error TS2695: Left side of comma operator is unused and has no side effects.
~~~~~
!!! error TS2872: This kind of expression is always truthy.
~
!!! error TS1005: ';' expected.
~
Expand Down

0 comments on commit 170e0aa

Please sign in to comment.