Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | src/: Start using lua_assert() instead of plain assert() | daurnimator | 2018-01-18 |
| | |||
* | Move fengari specific things to src/fengaricore.js | daurnimator | 2018-01-11 |
| | | | | String manipulation functions now get exposed on 'fengari' object itself at top level | ||
* | Introduce luastring_indexOf as Uint8Array.indexOf doesn't exist everywhere | daurnimator | 2018-01-07 |
| | |||
* | src/ldblib.js: Fix incorrect argument type to luaL_argerror | daurnimator | 2017-12-29 |
| | |||
* | src/ldblib.js: Use window.prompt to get input in browser | daurnimator | 2017-12-28 |
| | | | | Doesn't work in web workers | ||
* | src/{laux,ldb}lib.js: lua_writestringerror now only takes JS strings | daurnimator | 2017-12-28 |
| | |||
* | Use Uint8Array to back strings | daurnimator | 2017-12-13 |
| | |||
* | src/: Use to_luastring more often instead of manually creating arrays | daurnimator | 2017-12-13 |
| | |||
* | src/: Fix some linter complaints | daurnimator | 2017-12-10 |
| | |||
* | Use `typeof process === "undefined"` instead of WEB global | daurnimator | 2017-12-10 |
| | | | | This removes requirement to set global.WEB before requiring in node | ||
* | lua_writestringerror now takes a vararg and converts arrays | daurnimator | 2017-11-12 |
| | |||
* | Avoid .concat where simple to do so | daurnimator | 2017-06-09 |
| | |||
* | Fix some warnings found by closure-compiler | daurnimator | 2017-05-29 |
| | |||
* | src/ldebug.js: namewhat should always contain a string | daurnimator | 2017-05-22 |
| | |||
* | ldblib.js: fixed bad type for info lastlinedefined and linedefined | Benoit Giannangeli | 2017-05-20 |
| | |||
* | Webpack (single bundle for now) | Benoit Giannangeli | 2017-05-09 |
| | |||
* | Don't wrap lexer/parser strings in a TValue | daurnimator | 2017-05-05 |
| | | | | Fixes issue where internal TValues get exposed via lua_Debug structure | ||
* | Proto.source should be a string, not a TValue | daurnimator | 2017-05-05 |
| | | | | Fixes ar.source being internal tvalue | ||
* | src/ldblib.js: Add missing braces | daurnimator | 2017-05-04 |
| | |||
* | Export ldebug.js functions from lua.js | daurnimator | 2017-04-26 |
| | |||
* | Export lapi.js functions from lua.js | daurnimator | 2017-04-26 |
| | |||
* | Remove lua.char | daurnimator | 2017-04-26 |
| | |||
* | Remove lua.CT and lua.constant_types (still available from defs) | daurnimator | 2017-04-26 |
| | |||
* | No more Table, just TValue with table type and Map value | Benoit Giannangeli | 2017-04-18 |
| | |||
* | Cache all to_luastring of internal literals | Benoit Giannangeli | 2017-04-18 |
| | |||
* | Fixed debug.getinfo bad name lookup | Benoit Giannangeli | 2017-04-18 |
| | |||
* | debug.gethook | Benoit Giannangeli | 2017-04-14 |
| | |||
* | hooks | Benoit Giannangeli | 2017-04-14 |
| | |||
* | debug.upvaluejoin | Benoit Giannangeli | 2017-04-14 |
| | |||
* | debug.getuservalue, debug.setuservalue, debug.setlocal | Benoit Giannangeli | 2017-04-14 |
| | |||
* | debug.getupvalue, debug.setupvalue | Benoit Giannangeli | 2017-04-13 |
| | |||
* | debug.setmetatable debug.getmetatable | Benoit Giannangeli | 2017-04-13 |
| | |||
* | debug.getregistry | Benoit Giannangeli | 2017-04-13 |
| | |||
* | debug.getinfo | Benoit Giannangeli | 2017-04-12 |
| | |||
* | debug.traceback | Benoit Giannangeli | 2017-04-12 |
| | |||
* | debug.upvalueid | Benoit Giannangeli | 2017-04-11 |
| | |||
* | debug.getlocal | Benoit Giannangeli | 2017-04-11 |
| | |||
* | debug.debug | Benoit Giannangeli | 2017-04-11 |
Use readline-sync to read from stdin interactively |