1
Fork 0
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:
Stephan Unverwerth 2020-04-05 14:20:58 +02:00 committed by Andreas Kling
parent b82a2239c6
commit 500f6d9e3a
4 changed files with 107 additions and 5 deletions

View 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);
}