Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | lauxlib: Add LUA_FILEHANDLE | daurnimator | 2017-04-26 | |
| | ||||
* | lauxlib: Add luaL_*metatable and luaL_*udata functions | daurnimator | 2017-04-26 | |
| | ||||
* | Added missing test in luaL_tolstring | Benoit Giannangeli | 2017-04-26 | |
| | ||||
* | Added missin |0 | Benoit Giannangeli | 2017-04-26 | |
| | ||||
* | math.huge is Number.Infinity | Benoit Giannangeli | 2017-04-26 | |
| | ||||
* | src/lauxlib: Refactor luaL_tolstring to use lapi internals less | daurnimator | 2017-04-26 | |
| | ||||
* | Remove pointless use internal string implementation | daurnimator | 2017-04-26 | |
| | ||||
* | Remove unused require()s | daurnimator | 2017-04-26 | |
| | ||||
* | Export ldo.js functions from lua.js | daurnimator | 2017-04-26 | |
| | ||||
* | Export ldebug.js functions from lua.js | daurnimator | 2017-04-26 | |
| | ||||
* | HACK: Add extra require to break circular dependency issue | daurnimator | 2017-04-26 | |
| | ||||
* | Export lstate.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.thread_status | daurnimator | 2017-04-26 | |
| | ||||
* | Remove print_version | daurnimator | 2017-04-26 | |
| | ||||
* | Remove lua.CT and lua.constant_types (still available from defs) | daurnimator | 2017-04-26 | |
| | ||||
* | All core files reference defs.js instead of lua.js | daurnimator | 2017-04-26 | |
| | ||||
* | Move lua.js contents to defs.js | daurnimator | 2017-04-26 | |
| | ||||
* | Added missing lopcode.MAXINDEXRK | Benoit Giannangeli | 2017-04-25 | |
| | | | | Which ended up generating an OP_LOADK when not needed | |||
* | lun/dump.js use 32bit integers | Benoit Giannangeli | 2017-04-24 | |
| | ||||
* | Force 32bit integer with |0 | Benoit Giannangeli | 2017-04-24 | |
| | ||||
* | Use maximum 32bit number instead of Number.MAX_SAFE_INTEGER | Benoit Giannangeli | 2017-04-24 | |
| | ||||
* | L.openupval was not set in luaF_close | Benoit Giannangeli | 2017-04-24 | |
| | ||||
* | Bad upval name type | Benoit Giannangeli | 2017-04-23 | |
| | ||||
* | Handle when no upvalue found | Benoit Giannangeli | 2017-04-23 | |
| | ||||
* | Merge branch 'master' into feature/lua-tests | Benoit Giannangeli | 2017-04-19 | |
|\ | ||||
| * | Merge branch 'master' into cli | daurnimator | 2017-04-19 | |
| |\ | ||||
| * | | lauxlib: Only jsstring-ify if non-null | daurnimator | 2017-04-19 | |
| | | | ||||
| * | | lauxlib: Fix error handling in luaL_loadfilex | daurnimator | 2017-04-19 | |
| | | | ||||
* | | | No more Table, just TValue with table type and Map value | Benoit Giannangeli | 2017-04-18 | |
| | | | ||||
* | | | Fixed _ENV upvalue which was the same for all closures | Benoit Giannangeli | 2017-04-18 | |
| | | | ||||
* | | | Fixed table comparison (was comparing TValue instead of values) | Benoit Giannangeli | 2017-04-18 | |
| | | | ||||
* | | | luaH_next and luaH_getn are not Table member functions | 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 | |
| | | ||||
* | | os.time | Benoit Giannangeli | 2017-04-18 | |
| | | ||||
* | | Fixed boolean comparison | Benoit Giannangeli | 2017-04-14 | |
| | | ||||
* | | Fixed operators when tonumber used | Benoit Giannangeli | 2017-04-14 | |
| | | ||||
* | | Use Lua's modulo semantic | Benoit Giannangeli | 2017-04-14 | |
| | | ||||
* | | Fixed l_str2int fail case | Benoit Giannangeli | 2017-04-14 | |
| | | ||||
* | | debug.gethook | Benoit Giannangeli | 2017-04-14 | |
| | | ||||
* | | Fixed bad UpVal.setVal | Benoit Giannangeli | 2017-04-14 | |
| | | | | | | | | | | We were making the upval point to the slot of the stack from which the value to set was | |||
* | | 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 | |
| | | ||||
* | | Table indexes are also starting at 1 internally | Benoit Giannangeli | 2017-04-13 | |
|/ | | | | Since we use a Map we don't have to care about indexes starting at 0 |