aboutsummaryrefslogtreecommitdiff
path: root/src/ldo.js
Commit message (Collapse)AuthorAge
* Remove unwanted TODOsdaurnimator2018-03-04
|
* src/: Import lzio using destructured assignmentdaurnimator2018-01-29
|
* src/: Export LUA_SIGNATURE as lua string instead of js stringdaurnimator2018-01-29
|
* Use destruturing require for luaconf.jsdaurnimator2018-01-22
|
* src/lvm.js: Use destructuring assignment for defs.jsdaurnimator2018-01-22
|
* src/ldo.js: Fix typo (LUAT_NIL => LUA_TNIL)daurnimator2018-01-22
|
* src/ldo.js: Fix use of incorrect module for CIST_YPCALL constantdaurnimator2018-01-22
|
* src/: Destructure when requiring lstring.jsdaurnimator2018-01-18
|
* src/ldo.js: Use lua_assert/api_check/etc.daurnimator2018-01-18
|
* Introduce luastring_indexOf as Uint8Array.indexOf doesn't exist everywheredaurnimator2018-01-07
|
* src/: Fix some linter complaintsdaurnimator2017-12-10
|
* src/ldo.js: remove unrequired to_jsstring callsdaurnimator2017-11-12
|
* Removed incorrect use of llimits.MAX/MIN_INTBenoit Giannangeli2017-11-09
| | | | llimit.js is renamed to llimits.js
* Move jshint config to package.jsondaurnimator2017-08-18
|
* src/ldo.js: Add call debug hookdaurnimator2017-06-16
|
* src/ldo.js: Fix calling wrong stack index for atnativeerrordaurnimator2017-06-03
|
* Introduce function to adjust L.topdaurnimator2017-05-30
|
* src/ldo.js: Make sure to allocate TValue before assigningdaurnimator2017-05-29
|
* src/ldo.js: Make sure to extend stack before assigning in seterrorobjdaurnimator2017-05-27
|
* src/ldo.js: Don't export functions we don't need elsewheredaurnimator2017-05-27
|
* Modify stack values up to L.top instead of replacingdaurnimator2017-05-27
|
* Introduce setsvalue2sdaurnimator2017-05-27
|
* Introduce setobj2sdaurnimator2017-05-27
|
* Introduce setobjs2sdaurnimator2017-05-27
|
* Add missing luaD_checkstack in luaD_hookBenoit Giannangeli2017-05-24
|
* src/ldo.js: Don't want to call user's message handler with a 'this' of CallInfodaurnimator2017-05-24
|
* src/ldo.js: LUA_YIELD comes from defs.TS not lstatedaurnimator2017-05-24
|
* src/ldo.js: luaG_runerror takes lua stringsdaurnimator2017-05-23
|
* src/ldo.js: free CallInfo to recover from (lua) stack overflowdaurnimator2017-05-23
|
* Add luaD_inctop calls where appropriatedaurnimator2017-05-23
|
* src/ldo.js: Add assert to luaD_reallocstack from C sourcesdaurnimator2017-05-22
|
* Compare allowed stack indices to stack_lastdaurnimator2017-05-22
| | | | Not L.stack.length which is more equivalent to C's L->stacksize
* src/ldo.js: Add luaD_shrinkstack callsdaurnimator2017-05-22
|
* Add luaD_checkstack callsdaurnimator2017-05-22
|
* Fix lua_checkstack to check against LUAI_MAXSTACK. Adds luaD_growstack and ↵daurnimator2017-05-22
| | | | luaD_reallocstack
* Fixed bad oldtop value in seterrorobjBenoit Giannangeli2017-05-20
|
* src/ldo.js: message handler should still be run after native error handlingdaurnimator2017-05-15
|
* Add facility for a user provided (state-global) native error handlerdaurnimator2017-05-15
|
* Separate ZIO and MBuffer data structuresdaurnimator2017-05-15
| | | | - lua_load no longer takes a null reader function
* Rename .pcOff field to l_savedpcdaurnimator2017-05-12
|
* Rename CallInfo l_savedpc field to l_codedaurnimator2017-05-12
|
* Remove unused L.ciOff/L.nci fieldsdaurnimator2017-05-12
|
* src/{ldo,lvm}.js: Copy style from lua C codedaurnimator2017-05-12
|
* Move adhoc code into proper luaE_extendCIdaurnimator2017-05-12
|
* src/ldo.js: Don't bother keeping around a pool of CallInfo objectsdaurnimator2017-05-12
|
* src/ldo.js: Don't pass a 'this' to the panic functiondaurnimator2017-05-12
|
* src/ldo.js: Clean up requiresdaurnimator2017-05-08
|
* Clean up lundump.jsdaurnimator2017-05-08
| | | | | - Don't export a class (instead export luaU_undump) - Make error messages the same as normal lua
* Move string functions to centralised lstring.jsdaurnimator2017-05-08
|
* BytecodeParser consumes a MBuffer (== ZIO) instead of a DataViewBenoit Giannangeli2017-05-06
| | | | So we can read binary code with a user reader function