aboutsummaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAge
* Add table construction functiondaurnimator2017-04-28
|
* src/ltm.js: Fix use of non-existant enumdaurnimator2017-04-27
|
* src/ltm.js: Fix luaT_objtypenamedaurnimator2017-04-27
| | | | | - it tried to index the tvalue instead of the metatable - it returns a jsstring in __name case, but lua string in fallback
* src/ldo: On non-lua originating error, return the js error as a lightuserdatadaurnimator2017-04-27
|
* src/llex.js: getc should return -1 if no more inputdaurnimator2017-04-27
| | | | If the buffer was exhausted, the previous implementation could return undefined
* Add a couple of asserts to catch common errorsdaurnimator2017-04-27
|
* src/lstrlib.js: lobject no longer useddaurnimator2017-04-26
|
* Move frexp and ldexp to luaconf.jsdaurnimator2017-04-26
|
* Move jsstring() from lobject.js to defs.js; export from lua.jsdaurnimator2017-04-26
|
* src/lapi.js: Ignore size argument to lua_newuserdatadaurnimator2017-04-26
|
* Remove lightuserdata object subtypedaurnimator2017-04-26
|
* src/lapi.js: return box directly without fetching via stackdaurnimator2017-04-26
|
* src/lapi.js: If no size is passed to lua_newuserdata, then create an empty ↵daurnimator2017-04-26
| | | | object that isn't an ArrayBuffer
* Remove unused variablesdaurnimator2017-04-26
|
* Export luaL_openlibs from lauxlib.jsdaurnimator2017-04-26
|
* Add (empty) io librarydaurnimator2017-04-26
|
* lauxlib: Add luaL_fileresultdaurnimator2017-04-26
|
* lauxlib: Add LUA_FILEHANDLEdaurnimator2017-04-26
|
* lauxlib: Add luaL_*metatable and luaL_*udata functionsdaurnimator2017-04-26
|
* Added missing test in luaL_tolstringBenoit Giannangeli2017-04-26
|
* Added missin |0Benoit Giannangeli2017-04-26
|
* math.huge is Number.InfinityBenoit Giannangeli2017-04-26
|
* src/lauxlib: Refactor luaL_tolstring to use lapi internals lessdaurnimator2017-04-26
|
* Remove pointless use internal string implementationdaurnimator2017-04-26
|
* Remove unused require()sdaurnimator2017-04-26
|
* Export ldo.js functions from lua.jsdaurnimator2017-04-26
|
* Export ldebug.js functions from lua.jsdaurnimator2017-04-26
|
* HACK: Add extra require to break circular dependency issuedaurnimator2017-04-26
|
* Export lstate.js functions from lua.jsdaurnimator2017-04-26
|
* Export lapi.js functions from lua.jsdaurnimator2017-04-26
|
* Remove lua.chardaurnimator2017-04-26
|
* Remove lua.thread_statusdaurnimator2017-04-26
|
* Remove print_versiondaurnimator2017-04-26
|
* Remove lua.CT and lua.constant_types (still available from defs)daurnimator2017-04-26
|
* All core files reference defs.js instead of lua.jsdaurnimator2017-04-26
|
* Move lua.js contents to defs.jsdaurnimator2017-04-26
|
* Added missing lopcode.MAXINDEXRKBenoit Giannangeli2017-04-25
| | | | Which ended up generating an OP_LOADK when not needed
* lun/dump.js use 32bit integersBenoit Giannangeli2017-04-24
|
* Force 32bit integer with |0Benoit Giannangeli2017-04-24
|
* Use maximum 32bit number instead of Number.MAX_SAFE_INTEGERBenoit Giannangeli2017-04-24
|
* L.openupval was not set in luaF_closeBenoit Giannangeli2017-04-24
|
* Bad upval name typeBenoit Giannangeli2017-04-23
|
* Handle when no upvalue foundBenoit Giannangeli2017-04-23
|
* Merge branch 'master' into feature/lua-testsBenoit Giannangeli2017-04-19
|\
| * Merge branch 'master' into clidaurnimator2017-04-19
| |\
| * | lauxlib: Only jsstring-ify if non-nulldaurnimator2017-04-19
| | |
| * | lauxlib: Fix error handling in luaL_loadfilexdaurnimator2017-04-19
| | |
* | | No more Table, just TValue with table type and Map valueBenoit Giannangeli2017-04-18
| | |
* | | Fixed _ENV upvalue which was the same for all closuresBenoit Giannangeli2017-04-18
| | |
* | | Fixed table comparison (was comparing TValue instead of values)Benoit Giannangeli2017-04-18
| | |