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.
25 lines
265 B
25 lines
265 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 */
|