Skip to content

Commit 33853e2

Browse files
committed
accept baseline changes
1 parent 451ff29 commit 33853e2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/baselines/reference/api/tsserverlibrary.d.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2217,7 +2217,6 @@ declare namespace ts {
22172217
}
22182218
interface UniqueESSymbolType extends Type {
22192219
symbol: Symbol;
2220-
escapedName: __String;
22212220
}
22222221
interface StringLiteralType extends LiteralType {
22232222
value: string;

tests/baselines/reference/exponentiationOperatorSyntaxError1.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,8 @@ var temp = 10;
4040

4141
//// [exponentiationOperatorSyntaxError1.js]
4242
// Error: early syntax error using ES7 SimpleUnaryExpression on left-hand side without ()
43-
Math.pow(-1, 2);
43+
Math.pow(// Error: early syntax error using ES7 SimpleUnaryExpression on left-hand side without ()
44+
-1, 2);
4445
Math.pow(+1, 2);
4546
Math.pow(1, Math.pow(-2, 3));
4647
Math.pow(1, Math.pow(-2, -3));

0 commit comments

Comments
 (0)