Neko : Consider adding some highlighting for true, false, null and this.
This makes sense.
Neko : Consider enumerating all the built-ins instead of having a regex that catches all instances of $ident. This could help catch miss typed built-in names. I need an up-to-date list of built-ins for this.
You can find it on the Neko website (builtins documentation) or in neko/vm/builtins.c
There is two additional builtins with are not listed there : - $loader - $exports They are documented in the "Neko VM Documentation" Nicolas -- Neko : One VM to run them all (http://nekovm.org)
