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))
};
|