mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 12:49:08 +00:00
LibJS: Add numeric literal parsing for different bases and exponents
This commit is contained in:
committed by
Andreas Kling
parent
b82a2239c6
commit
500f6d9e3a
20
Libraries/LibJS/Tests/numeric-literals-basic.js
Normal file
20
Libraries/LibJS/Tests/numeric-literals-basic.js
Normal file
@@ -0,0 +1,20 @@
|
||||
try {
|
||||
assert(0xff === 255);
|
||||
assert(0XFF === 255);
|
||||
assert(0o10 === 8);
|
||||
assert(0O10 === 8);
|
||||
assert(0b10 === 2);
|
||||
assert(0B10 === 2);
|
||||
assert(1e3 === 1000);
|
||||
assert(1e+3 === 1000);
|
||||
assert(1e-3 === 0.001);
|
||||
assert(.1 === 0.1);
|
||||
assert(.1e1 === 1);
|
||||
assert(0.1e1 === 1);
|
||||
assert(.1e+1 === 1);
|
||||
assert(0.1e+1 === 1);
|
||||
|
||||
console.log("PASS");
|
||||
} catch (e) {
|
||||
console.log("FAIL: " + e);
|
||||
}
|
||||
Reference in New Issue
Block a user