summaryrefslogtreecommitdiff
path: root/ltests.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* 'lua_Kcontext' -> 'lua_KContext'Roberto Ierusalimschy2014-10-071-3/+3
* when thread yields, real "func" is in field 'extra', not in 'func'Roberto Ierusalimschy2014-10-061-4/+8
* deprecated "cast macros" ('luaL_checkint', 'luaL_optint', etc.)Roberto Ierusalimschy2014-10-011-9/+9
* size for array part of a table ('sizearray') changed from 'int' toRoberto Ierusalimschy2014-09-041-3/+3
* 'T.gccolor' classify dead objects tooRoberto Ierusalimschy2014-09-011-4/+7
* 'lua_Ctx' -> 'lua_Kcontext'Roberto Ierusalimschy2014-08-011-3/+3
* no need for type 'pCallInfo'Roberto Ierusalimschy2014-07-231-2/+2
* 'iswhite' and related macros now can work directly on any objectRoberto Ierusalimschy2014-07-191-3/+3
* type 'Udata' refers directly to structure inside the union (unionRoberto Ierusalimschy2014-07-181-2/+2
* type 'TString' refers directly to the structure inside the unionRoberto Ierusalimschy2014-07-181-8/+5
* added check for conversion 'obj2gco' (and corrections for smallRoberto Ierusalimschy2014-07-181-10/+11
* no need for field 'gch' anymoreRoberto Ierusalimschy2014-07-171-18/+18
* new type 'lua_Ctx' for continuation-function contexts (to allow typeRoberto Ierusalimschy2014-07-171-3/+3
* 'requiref' checks 'package.loaded' before loading a moduleRoberto Ierusalimschy2014-07-161-2/+7
* unsigned-manipulation functions (lua_puhsunsigned, lua_tounsigned, etc.)Roberto Ierusalimschy2014-06-261-4/+1
* detail (avoid too large macro)Roberto Ierusalimschy2014-06-191-3/+5
* macro 'checkobjref' accepts NULL (as all its uses checked for NULLRoberto Ierusalimschy2014-06-171-21/+15
* new type lua_KFunction + no more 'lua_getctx'Roberto Ierusalimschy2014-06-101-12/+8
* new API function 'lua_rotate'Roberto Ierusalimschy2014-05-131-1/+5
* 'T.totalmem' accepts 0 for unlimited memoryRoberto Ierusalimschy2014-05-081-3/+5
* instructions in 'runC' sorted alphabetically + new instructionsRoberto Ierusalimschy2014-04-141-192/+198
* userdata can have any Lua value as uservalueRoberto Ierusalimschy2014-02-191-1/+4
* no need to keep threads in a different GC list, now that there is theRoberto Ierusalimschy2014-02-181-15/+5
* field 'op' renamed to 'open'Roberto Ierusalimschy2014-02-151-2/+2
* no more local collectionRoberto Ierusalimschy2014-02-131-49/+18
* keep a single list of objects to be finalized (with local and non-localRoberto Ierusalimschy2014-02-111-15/+10
* first implementation of '<<', '>>', and '~' (bitwise not)Roberto Ierusalimschy2013-12-301-2/+11
* first implementation of bitwise operators '&' (band), '|' (bor),Roberto Ierusalimschy2013-12-181-2/+2
* new order for binary operations (grouping them by type of result)Roberto Ierusalimschy2013-12-161-2/+2
* new names and better order for GC states (sweep first lists thatRoberto Ierusalimschy2013-09-111-6/+6
* threads are kept in a separated GC list, linked after the main threadRoberto Ierusalimschy2013-09-111-7/+12
* objects in list 'tobefnz' have a GC life-cycle like all othersRoberto Ierusalimschy2013-09-111-5/+5
* more invariants added to memory checkRoberto Ierusalimschy2013-09-111-3/+4
* back to open hashing for the string table (but with a differentRoberto Ierusalimschy2013-09-051-8/+12
* better (and correct!) control of 'maybedead'Roberto Ierusalimschy2013-09-041-20/+19
* local collection now calls finalizersRoberto Ierusalimschy2013-09-031-33/+30
* new GC state to sweep 'localgc' list + small changes in sweep controlRoberto Ierusalimschy2013-08-301-2/+3
* LOCALBLACK changed to LOCALMARK and used also to control whether objectRoberto Ierusalimschy2013-08-271-1/+3
* upvalues collected by reference countRoberto Ierusalimschy2013-08-271-31/+9
* Lua closures go to local, tooRoberto Ierusalimschy2013-08-261-7/+19
* some details over new implementation of string tableRoberto Ierusalimschy2013-08-221-2/+2
* change in string table: string table is now independent of GC lists; allRoberto Ierusalimschy2013-08-211-13/+9
* GC bits SEPARATED and FINALIZEDBIT mixed in FINALIZEDBIT (with simplerRoberto Ierusalimschy2013-08-201-4/+4
* new function 'isgclocal' + test for GC consistency of prototype's cachesRoberto Ierusalimschy2013-08-191-3/+16
* 'next' field for tables changed from pointer to integer (for betterRoberto Ierusalimschy2013-08-181-3/+3
* detailsRoberto Ierusalimschy2013-08-161-7/+4
* added 'local' bit (true => object is only refered by local variables)Roberto Ierusalimschy2013-08-161-22/+35
* double-linked list of all upvalues elliminated and changed to aRoberto Ierusalimschy2013-08-071-12/+7
* no more generational collection !!!Roberto Ierusalimschy2013-08-051-21/+5
* try to avoid warnings when converting int to pointerRoberto Ierusalimschy2013-06-201-2/+3