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.
30 lines
429 B
30 lines
429 B
/*
|
|
* JSON number parsing bug in Duktape 1.0 for explicitly positive exponents,
|
|
* eval() works.
|
|
*/
|
|
|
|
/*===
|
|
150
|
|
150
|
|
===*/
|
|
|
|
function testJson() {
|
|
// The parse error here is caused by the exponent plus sign.
|
|
print(JSON.parse('1.50e+2'));
|
|
}
|
|
|
|
function testEval() {
|
|
print(eval('1.50e+2'));
|
|
}
|
|
|
|
try {
|
|
testJson();
|
|
} catch (e) {
|
|
print(e.stack || e);
|
|
}
|
|
|
|
try {
|
|
testEval();
|
|
} catch (e) {
|
|
print(e.stack || e);
|
|
}
|
|
|