File: octalIntegerLiteralError.symbols

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 (22 lines) | stat: -rw-r--r-- 897 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
=== tests/cases/conformance/es6/binaryAndOctalIntegerLiteral/octalIntegerLiteralError.ts ===
// error
var oct1 = 0O13334823;
>oct1 : Symbol(oct1, Decl(octalIntegerLiteralError.ts, 1, 3))

var oct2 = 0o34318592;
>oct2 : Symbol(oct2, Decl(octalIntegerLiteralError.ts, 2, 3))

var obj1 = {
>obj1 : Symbol(obj1, Decl(octalIntegerLiteralError.ts, 4, 3))

    0O45436: "hi",
>0O45436 : Symbol(0O45436, Decl(octalIntegerLiteralError.ts, 4, 12), Decl(octalIntegerLiteralError.ts, 5, 18), Decl(octalIntegerLiteralError.ts, 6, 19))

    19230: "Hello",
>19230 : Symbol(0O45436, Decl(octalIntegerLiteralError.ts, 4, 12), Decl(octalIntegerLiteralError.ts, 5, 18), Decl(octalIntegerLiteralError.ts, 6, 19))

    "19230": "world",
>"19230" : Symbol(0O45436, Decl(octalIntegerLiteralError.ts, 4, 12), Decl(octalIntegerLiteralError.ts, 5, 18), Decl(octalIntegerLiteralError.ts, 6, 19))

};