aboutsummaryrefslogtreecommitdiff
path: root/src/lstate.js
Commit message (Collapse)AuthorAge
* Move string functions to centralised lstring.jsdaurnimator2017-05-08
|
* [test-suite] calls.jsBenoit Giannangeli2017-05-05
|
* Flatten CallInfo union memberdaurnimator2017-05-05
|
* Remove .twups fielddaurnimator2017-05-05
| | | | It's used to track threads that should be traversed by the GC to find upvalues
* Move .id field from TValue to values themselvesdaurnimator2017-05-03
|
* Refactor table implementationdaurnimator2017-05-03
|
* os.exitBenoit Giannangeli2017-04-28
|
* Remove unused string interning Mapdaurnimator2017-04-28
|
* lua_State shouldn't subclass TValuedaurnimator2017-04-28
|
* Add table construction functiondaurnimator2017-04-28
|
* Remove unused variablesdaurnimator2017-04-26
|
* All core files reference defs.js instead of lua.jsdaurnimator2017-04-26
|
* L.openupval was not set in luaF_closeBenoit Giannangeli2017-04-24
|
* No more Table, just TValue with table type and Map valueBenoit Giannangeli2017-04-18
|
* Table indexes are also starting at 1 internallyBenoit Giannangeli2017-04-13
| | | | Since we use a Map we don't have to care about indexes starting at 0
* Proper use of luaO_nilobjectBenoit Giannangeli2017-03-24
|
* lstate: Don't localise ldo.js fieldsdaurnimator2017-03-23
| | | | Doing so breaks due to circular dependencies
* No interning for nowBenoit Giannangeli2017-03-13
| | | | G.strt would have grown with each string
* String are represented by Array of 8-bit numbersBenoit Giannangeli2017-03-13
|
* string.charBenoit Giannangeli2017-03-06
|
* lstrlib, string.lenBenoit Giannangeli2017-03-05
|
* Bytecode generationBenoit Giannangeli2017-03-01
|
* coroutinesBenoit Giannangeli2017-02-23
|
* Tables are JS Maps, lua_nextBenoit Giannangeli2017-02-22
|
* Load std lib, can call printBenoit Giannangeli2017-02-17
|
* More accurate state and closure initBenoit Giannangeli2017-02-17
|
* Everything need to make luaL_newstate work, lua_pushnil testBenoit Giannangeli2017-02-15
|
* Implementing minimal path from main to luaV_execute of user scriptBenoit Giannangeli2017-02-15
|
* Better use of module to avoid cyclic dependencies issuesBenoit Giannangeli2017-02-13
|
* Fixed bad tailcall, _ENV is a closed upvalueBenoit Giannangeli2017-02-11
|
* UpvaluesBenoit Giannangeli2017-02-10
|
* callstatus, OP_LE, OP_JMP, tests use L.topBenoit Giannangeli2017-02-08
|
* First CallInfo expects LUA_MULTRET resultsBenoit Giannangeli2017-02-07
|
* postcall and precallBenoit Giannangeli2017-02-06
| | | | | | In the tests, we just look at the last n elements of the stack to check our results. This is because the executed script itself doesn't expect any result, so we did not put results at L.top.
* Fixed bad use of L.topBenoit Giannangeli2017-02-05
|
* CLOSURE, CALLBenoit Giannangeli2017-02-04
|
* VM Tests, OP_MOVE, OP_LOAK, partial OP_RETURNBenoit Giannangeli2017-02-03
|
* Dispatch loopBenoit Giannangeli2017-02-03
|
* Lua VMBenoit Giannangeli2017-02-03
|
* readHeaderBenoit Giannangeli2017-02-02
|
* Following Lua's source code as closely as possibleBenoit Giannangeli2017-02-02