accept baseline changes

This commit is contained in:
Klaus Meinhardt 2019-01-27 17:46:32 +01:00
parent 451ff29263
commit 33853e2258
2 changed files with 2 additions and 2 deletions

View file

@ -2217,7 +2217,6 @@ declare namespace ts {
}
interface UniqueESSymbolType extends Type {
symbol: Symbol;
escapedName: __String;
}
interface StringLiteralType extends LiteralType {
value: string;

View file

@ -40,7 +40,8 @@ var temp = 10;
//// [exponentiationOperatorSyntaxError1.js]
// Error: early syntax error using ES7 SimpleUnaryExpression on left-hand side without ()
Math.pow(-1, 2);
Math.pow(// Error: early syntax error using ES7 SimpleUnaryExpression on left-hand side without ()
-1, 2);
Math.pow(+1, 2);
Math.pow(1, Math.pow(-2, 3));
Math.pow(1, Math.pow(-2, -3));