TypeScript/tests/baselines/reference/parser.numericSeparators.hexNegative.js
Kagami Sascha Rosylight f4d0ea6539
Add target: ES2021 (#41239)
* Support `target: es2020`

* use CRLF

* update symbols

Co-authored-by: Nathan Shively-Sanders <293473+sandersn@users.noreply.github.com>
2021-03-10 13:31:25 -08:00

35 lines
408 B
TypeScript

//// [tests/cases/conformance/parser/ecmascript2021/numericSeparators/parser.numericSeparators.hexNegative.ts] ////
//// [1.ts]
0x00_
//// [2.ts]
0x_110
//// [3.ts]
0_X0101
//// [4.ts]
0x01__11
//// [5.ts]
0X0110_0110__
//// [6.ts]
0x___0111010_0101_1
//// [1.js]
0;
//// [2.js]
272;
//// [3.js]
0;
X0101;
//// [4.js]
273;
//// [5.js]
17826064;
//// [6.js]
1172542853137;