Hacker News new | ask | show | jobs
by dirkf 1689 days ago
Note how it says: "match the performance of the LuaJIT interpreter" (emphasis mine). LuaJIT basically has two parts: an interpreter in handcrafted assembly which is quite a bit faster than the standard Lua VM, and the actual JIT, which is even faster. IIRC on iOS the JIT is not allowed but the interpreter is still there.
1 comments

Good catch! I missed the word interpreter in there.