mirror of https://github.com/svaarala/duktape.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
425 B
40 lines
425 B
12 years ago
|
/*
|
||
|
* Parsing of numeric literals (E5 Sections 7.8.3, B.1.1).
|
||
|
*/
|
||
|
|
||
|
/*---
|
||
|
{
|
||
|
"skip": true
|
||
|
}
|
||
|
---*/
|
||
|
|
||
|
/*
|
||
|
* Optional octal syntax, E5 Section B.1.1.
|
||
|
*/
|
||
|
|
||
|
/*===
|
||
|
1036956
|
||
|
===*/
|
||
|
try {
|
||
|
print(03751234);
|
||
|
} catch (e) {
|
||
|
print(e.name);
|
||
|
}
|
||
|
|
||
|
/* FIXME: test 088, 099 */
|
||
12 years ago
|
|
||
|
/*===
|
||
|
1
|
||
|
true
|
||
|
===*/
|
||
|
|
||
|
/* Fraction period not necessarily followed by decimals. */
|
||
|
|
||
|
try {
|
||
|
print(1.);
|
||
|
print(1. === 1);
|
||
|
} catch (e) {
|
||
|
print(e.name);
|
||
|
}
|
||
|
|