File: parser.numericSeparators.decimal.types

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (43 lines) | stat: -rw-r--r-- 607 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
=== tests/cases/conformance/parser/ecmascriptnext/numericSeparators/parser.numericSeparators.decimal.ts ===
1_000_000_000
>1_000_000_000 : 1000000000

1.1_00_01
>1.1_00_01 : 1.10001

1e1_0
>1e1_0 : 10000000000

1e+1_0
>1e+1_0 : 10000000000

1e-1_0
>1e-1_0 : 1e-10

1.1e10_0
>1.1e10_0 : 1.1e+100

1.1e+10_0
>1.1e+10_0 : 1.1e+100

1.1e-10_0
>1.1e-10_0 : 1.1e-100

12_34_56
>12_34_56 : 123456

1_22_333
>1_22_333 : 122333

1_2.3_4
>1_2.3_4 : 12.34

1_2.3_4e5_6
>1_2.3_4e5_6 : 1.234e+57

1_2.3_4e+5_6
>1_2.3_4e+5_6 : 1.234e+57

1_2.3_4e-5_6
>1_2.3_4e-5_6 : 1.234e-55