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.
74 lines
1.3 KiB
74 lines
1.3 KiB
12 years ago
|
/*---
|
||
|
{
|
||
|
"custom": true
|
||
|
}
|
||
|
---*/
|
||
|
|
||
|
/* toLocaleString() behavior is not specified, except that the number
|
||
|
* should be formatted "according to the conventions of the host
|
||
|
* environment's current locale". An implementation is allowed to do
|
||
|
* the same thing as toString(), although this is not recommended.
|
||
|
*
|
||
|
* The current implementation uses toString() directly, so test for
|
||
|
* this basic behavior.
|
||
|
*/
|
||
|
|
||
|
/*===
|
||
|
-Infinity
|
||
|
string -Infinity
|
||
|
-1000000000
|
||
|
string -1000000000
|
||
|
-123.4
|
||
|
string -123.4
|
||
|
-1
|
||
|
string -1
|
||
|
0
|
||
|
string 0
|
||
|
0
|
||
|
string 0
|
||
|
1
|
||
|
string 1
|
||
|
123.4
|
||
|
string 123.4
|
||
|
1000000000
|
||
|
string 1000000000
|
||
|
Infinity
|
||
|
string Infinity
|
||
|
undefined
|
||
|
string NaN
|
||
12 years ago
|
64
|
||
12 years ago
|
===*/
|
||
|
|
||
|
function basicTest() {
|
||
|
function test(x) {
|
||
|
var obj;
|
||
|
var t;
|
||
|
|
||
|
try {
|
||
|
obj = new Number(x);
|
||
|
t = obj.toString();
|
||
|
print(typeof t, t);
|
||
|
} catch (e) {
|
||
|
print(e.name);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var values = [ Number.NEGATIVE_INFINITY, -1e9, -123.4, -1, -0, +0, 1, 123.4, 1e9, Number.POSITIVE_INFINITY, Number.NAN ];
|
||
|
var i;
|
||
|
for (i = 0; i < values.length; i++) {
|
||
|
print(values[i]);
|
||
|
test(values[i]);
|
||
|
}
|
||
12 years ago
|
|
||
|
// radix argument is passed to toString now
|
||
|
|
||
|
print(new Number(100).toLocaleString(16));
|
||
12 years ago
|
}
|
||
|
|
||
|
try {
|
||
|
basicTest();
|
||
|
} catch (e) {
|
||
|
print(e);
|
||
|
}
|
||
|
|