| Commit message (Expand) | Author | Age |
* | Fix some warnings found by closure-compiler | daurnimator | 2017-05-29 |
* | src/lstrlib.js: Add annotations for jshint | daurnimator | 2017-05-29 |
* | src/lstrlib.js: Fix position capture returning wrong value | daurnimator | 2017-05-29 |
* | src/lutf8lib.js: Use String.fromCodePoint so that astral characters work | daurnimator | 2017-05-29 |
* | src/lutf8lib.js: Push correct charpattern | daurnimator | 2017-05-29 |
* | src/lbaselib.js: Avoid an extra copy in print | daurnimator | 2017-05-29 |
* | src/lbaselib.js: Make print() correctly handle 8bit chars under node | daurnimator | 2017-05-29 |
* | src/lutf8lib.js: Avoid slicing string (which makes a copy) | daurnimator | 2017-05-29 |
* | Fix some jshint warnings | daurnimator | 2017-05-29 |
* | src/lapi.js: Clean up upvaluejoin | daurnimator | 2017-05-29 |
* | src/lfunc.js: Give UpVals an id field | daurnimator | 2017-05-29 |
* | src/lparser.js: Fix https://www.lua.org/bugs.html#5.3.4-1 | daurnimator | 2017-05-29 |
* | src/lvm.js: Fix indentation in luaV_concat | daurnimator | 2017-05-29 |
* | luaO_tostring should modify TValue | daurnimator | 2017-05-29 |
* | src/ldo.js: Make sure to allocate TValue before assigning | daurnimator | 2017-05-29 |
* | src/lapi.js: When joining upvalues, increase reference count on copied upvalue | daurnimator | 2017-05-29 |
* | src/lvm.js: cache closures | daurnimator | 2017-05-29 |
* | src/lvm.js: Move OP_SETUPVAL into opcode order location | daurnimator | 2017-05-29 |
* | src/lvm.js: OP_GETTABLE should use RB not RKB | daurnimator | 2017-05-29 |
* | Have lua closures point to directly to their upvalues on stack | daurnimator | 2017-05-29 |
* | src/lvm.js: Fix indentation | daurnimator | 2017-05-29 |
* | lstrlib.js: pattern index treated as pattern itself | Benoit Giannangeli | 2017-05-29 |
* | 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 |
* | 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 |
* | lua_tonumberx | Benoit Giannangeli | 2017-05-28 |
* | Merge remote-tracking branch 'daurnimator/stack-modification-work' into test-... | Benoit Giannangeli | 2017-05-28 |
|\ |
|
| * | 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 |
| * | 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 |
* | | Fixed bad lua_tocfunction export | 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 |