mirror of
https://github.com/RGBCube/serenity
synced 2025-05-31 06:58:11 +00:00
LibJS: Add numeric literal parsing for different bases and exponents
This commit is contained in:
parent
b82a2239c6
commit
500f6d9e3a
4 changed files with 107 additions and 5 deletions
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);
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue