summaryrefslogtreecommitdiff
path: root/ltests.c (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* new type 'StackValue' for stack elementsRoberto Ierusalimschy2017-06-291-4/+4
* new constant 'LUA_GNAME' for the name of the global table "_G"Roberto Ierusalimschy2017-06-271-2/+2
* 'lineinfo' in prototypes saved as differences instead of absoluteRoberto Ierusalimschy2017-06-271-2/+2
* no more 'DEADKEY'. Table traversals do not need to consider dead keys;Roberto Ierusalimschy2017-06-121-2/+1
* in hash nodes, keys are stored in separate pieces to avoid wastingRoberto Ierusalimschy2017-06-091-6/+10
* updated GC states in function 'T.gcstate'Roberto Ierusalimschy2017-05-311-5/+7
* barrier for prototype's cache (with new gray list 'protogray' to keepRoberto Ierusalimschy2017-05-041-1/+4
* type 'L_Umaxalign' replaced by macro 'LUAI_MAXALIGN', which is also addedRoberto Ierusalimschy2017-04-241-2/+2
* 'KGC_NORMAL' -> 'KGC_INC' + emergency GC signalled by flag (insteadRoberto Ierusalimschy2017-04-241-2/+2
* corrected some checks about colors of old objects + new test functionRoberto Ierusalimschy2017-04-191-15/+46
* memory check adapted to generational modeRoberto Ierusalimschy2017-04-181-63/+133
* generational collection: new attempt (still incomplete)Roberto Ierusalimschy2017-02-231-5/+7
* using constants for "_LOADED" and "PRELOAD"Roberto Ierusalimschy2016-12-041-2/+2
* using 'lastfree == NULL' to signal that table is using the dummyRoberto Ierusalimschy2016-11-071-3/+3
* '*' as a number means stack size, so that "return *" returnsRoberto Ierusalimschy2015-10-121-1/+6
* new definition for macro 'checkliveness'Roberto Ierusalimschy2015-09-081-2/+2
* detailRoberto Ierusalimschy2015-07-011-2/+2
* using 'lua_longassert' to avoid warningsRoberto Ierusalimschy2015-06-181-2/+2
* new function 'log2' to test 'luaO_ceillog2' (if needed)Roberto Ierusalimschy2015-04-021-1/+9
* code detail ('if' -> '?:')Roberto Ierusalimschy2015-03-131-6/+6
* 'ci_func' don't need to be exportedRoberto Ierusalimschy2015-03-111-2/+2
* size of short strings stored in a single byte, to reduce the sizeRoberto Ierusalimschy2015-01-161-2/+2
* stupid bug in T.stacklevel (not in use by the tests)Roberto Ierusalimschy2014-12-181-2/+2
* new parameter for testC instruction 'pcall' (error handler)Roberto Ierusalimschy2014-12-101-4/+4
* casts ('(int)' -> 'cast_int')Roberto Ierusalimschy2014-11-291-9/+9
* clearer notation for "compare" instructionRoberto Ierusalimschy2014-11-251-3/+6
* allows calling luaL_checkstack with no message (in runC)Roberto Ierusalimschy2014-11-141-2/+5
* independent code for 'printstack' + test for panic function canRoberto Ierusalimschy2014-11-111-17/+21
* new function 'T.checkpanic' (to check panic errors)Roberto Ierusalimschy2014-11-101-1/+52
* luaL_loadbuffer replaced by luaL_loadstring (to test luaL_loadstring)Roberto Ierusalimschy2014-11-101-4/+11
* when checking thread consistency, check its entire stack (alwaysRoberto Ierusalimschy2014-11-071-4/+4
* added include for 'lprefix.h', for stuff that must be added beforeRoberto Ierusalimschy2014-11-021-4/+6
* comments (a few extra quotes around identifiers)Roberto Ierusalimschy2014-10-301-2/+2
* 'T.limits' reports some more useful limitsRoberto Ierusalimschy2014-10-271-2/+5
* `name' in comments changed to 'name'Roberto Ierusalimschy2014-10-251-2/+2
* '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