evo-lua / evo-luvi

[Obsolete] Experimental Lua runtime environment built on Luvi (libuv + LuaJIT)
https://evo-lua.github.io
Apache License 2.0
1 stars 0 forks source link

Colorize the output provided by ``dump`` to make it easier to read #24

Open rdw-software opened 2 years ago

rdw-software commented 2 years ago

Will likely have to add the console colors utility as a primitive, but it's trivial code with zero maintenance overhead and a tiny footprint (it's literally just inserting ANSI color codes into the string). Since dump is implemented by inspect.lua as a builtin, it can't easily be moved to the evo environment. Also, it would be useful to have colorized output in the runtime itself, so that's a win/win.

rdw-software commented 2 years ago

Waiting on #25