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
commit 500f6d9e3a
Notes: sideshowbarker 2024-07-19 07:53:33 +09:00
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);
}