Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Fix bad validop test on lvm.tointeger | Benoit Giannangeli | 2017-05-29 | |
| | ||||
* | Removed 'OP_' prefix from OpCodes names array | Benoit Giannangeli | 2017-05-28 | |
| | ||||
* | Replace switch on opcode names with switch on their value | Benoit Giannangeli | 2017-05-28 | |
| | ||||
* | ltests.js: listcode | Benoit Giannangeli | 2017-05-28 | |
| | ||||
* | [test-suite] code.js | Benoit Giannangeli | 2017-05-28 | |
| | ||||
* | ltest.js: listk | Benoit Giannangeli | 2017-05-28 | |
| | ||||
* | Added travis_wait to wait out stack overflow tests | Benoit Giannangeli | 2017-05-28 | |
| | ||||
* | [test-suite] api.js passes | Benoit Giannangeli | 2017-05-28 | |
| | ||||
* | Comment out io.read in tests | Benoit Giannangeli | 2017-05-28 | |
| | ||||
* | ltests.js: fixed upvalue, removed collectgarbage calls | Benoit Giannangeli | 2017-05-28 | |
| | ||||
* | lua_copy should not use index2addr_ | Benoit Giannangeli | 2017-05-28 | |
| | ||||
* | luaL_loadfilex raise error if filename is not a file | Benoit Giannangeli | 2017-05-28 | |
| | | | | e.g. a directory | |||
* | lua_tonumberx | Benoit Giannangeli | 2017-05-28 | |
| | | | | | | | | lua_tonumber should return 0 if argument is not convertible to a number. But luaL_checknumber uses lua_tonumberx and tests isnum. -> lua_tonumberx return false if argument is not convertible to a number. | |||
* | Merge remote-tracking branch 'daurnimator/stack-modification-work' into ↵ | Benoit Giannangeli | 2017-05-28 | |
|\ | | | | | | | test-suite | |||
| * | src/lapi.js: Use a temporary variable in lua_len | daurnimator | 2017-05-27 | |
| | | ||||
| * | src/ldo.js: Make sure to extend stack before assigning in seterrorobj | daurnimator | 2017-05-27 | |
| | | ||||
| * | src/ldo.js: Don't export functions we don't need elsewhere | daurnimator | 2017-05-27 | |
| | | ||||
| * | src/lauxlib.js: In luaL_loadfilex only wrap the fs library calls in try/catch | daurnimator | 2017-05-27 | |
| | | ||||
| * | Have ltm.luaT_callorderTM return a boolean | daurnimator | 2017-05-27 | |
| | | ||||
| * | Modify stack values up to L.top instead of replacing | daurnimator | 2017-05-27 | |
| | | ||||
| * | Use .setclLvalue | daurnimator | 2017-05-27 | |
| | | ||||
| * | src/lobject.js: Introduce TValue.set*value for missing types | daurnimator | 2017-05-27 | |
| | | ||||
| * | Introduce chgfltvalue and chgivalue | daurnimator | 2017-05-27 | |
| | | ||||
| * | src/lapi.js: Sync lua_pushliteral implementation with lua_pushstring | daurnimator | 2017-05-27 | |
| | | ||||
| * | Keep api_incr_top macro contents distinct | daurnimator | 2017-05-27 | |
| | | | | | | | | | | - Don't have postincrement in a previous expression - Fix a couple of places the assert was missing | |||
| * | src/lapi.js: Fix incorrect argument to luaS_newliteral in lua_concat | daurnimator | 2017-05-27 | |
| | | ||||
| * | src/lapi.js: lua_pushstring should return internal copy | daurnimator | 2017-05-27 | |
| | | ||||
| * | src/lapi.js: Ignore 's' when lua_pushlstring is passed 0 | daurnimator | 2017-05-27 | |
| | | ||||
| * | Introduce setsvalue2s | daurnimator | 2017-05-27 | |
| | | ||||
| * | src/lvm.js: Use setobjs2s in luaV_finishOp's OP_CONCAT case | daurnimator | 2017-05-27 | |
| | | ||||
| * | Introduce setobj2s | daurnimator | 2017-05-27 | |
| | | ||||
| * | Introduce setobjs2s | daurnimator | 2017-05-27 | |
| | | ||||
* | | ltests.js: func2num behaves like topointer | Benoit Giannangeli | 2017-05-28 | |
| | | ||||
* | | io.read is NYI | Benoit Giannangeli | 2017-05-27 | |
| | | ||||
* | | ltests.js: topointer does not always work like C version would | Benoit Giannangeli | 2017-05-27 | |
| | | ||||
* | | Fixed bad lua_tocfunction export | Benoit Giannangeli | 2017-05-27 | |
| | | ||||
* | | ltests.js: topointer cast lua_topointer result so null should be 0 | Benoit Giannangeli | 2017-05-27 | |
| | | ||||
* | | luaS_newliteral takes a js string | Benoit Giannangeli | 2017-05-27 | |
| | | ||||
* | | lua_tonumber should return 0 if value can't be converted to a number | Benoit Giannangeli | 2017-05-27 | |
| | | ||||
* | | lua_rawlen: bad userdata len reference | Benoit Giannangeli | 2017-05-27 | |
| | | ||||
* | | luaT_trybinTM in luaO_arith needs a stack index | Benoit Giannangeli | 2017-05-27 | |
| | | ||||
* | | runJS switch instead of if elses | Benoit Giannangeli | 2017-05-26 | |
|/ | ||||
* | [test-suite] api.js | Benoit Giannangeli | 2017-05-25 | |
| | ||||
* | [test-suite] coroutine.js passes | Benoit Giannangeli | 2017-05-25 | |
| | ||||
* | ltests.js: makeCfunc | Benoit Giannangeli | 2017-05-25 | |
| | ||||
* | ltests.js: newstate, loadlib, doremote, closestate | Benoit Giannangeli | 2017-05-25 | |
| | ||||
* | [test-suite] coroutine.js | Benoit Giannangeli | 2017-05-25 | |
| | ||||
* | ar.what was not a lua string | Benoit Giannangeli | 2017-05-25 | |
| | ||||
* | ltests.js: testJS/C | Benoit Giannangeli | 2017-05-25 | |
| | ||||
* | [test-suite] coroutine.js | Benoit Giannangeli | 2017-05-25 | |
| |