Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | macros 'LUA_QL'/'LUA_QL' deprecated | Roberto Ierusalimschy | 2014-10-17 | 1 | -2/+2 |
| | |||||
* | new macro 'cvt2str' to better control whether numbers are convertible | Roberto Ierusalimschy | 2014-07-30 | 1 | -3/+2 |
| | | | | to strings | ||||
* | new conversion float->integer: conversion is valid only when | Roberto Ierusalimschy | 2014-07-17 | 1 | -5/+7 |
| | | | | float has an exact representation as an integer | ||||
* | removed unused parameter Ä'L' in macro 'api_check' and company | Roberto Ierusalimschy | 2014-07-15 | 1 | -2/+2 |
| | |||||
* | 'lua_sethook' returns void | Roberto Ierusalimschy | 2013-12-09 | 1 | -3/+2 |
| | |||||
* | bug: Wrong error message in some short-cut expressions | Roberto Ierusalimschy | 2013-07-10 | 1 | -11/+19 |
| | |||||
* | correct error message for conversion errors from float to int | Roberto Ierusalimschy | 2013-05-06 | 1 | -10/+20 |
| | |||||
* | added 'const' to parameters of 'luaG_concaterror' | Roberto Ierusalimschy | 2013-04-29 | 1 | -2/+2 |
| | |||||
* | new interface for 'tonumber' | Roberto Ierusalimschy | 2013-04-26 | 1 | -3/+3 |
| | |||||
* | new operation '//' (integer division) | Roberto Ierusalimschy | 2013-04-26 | 1 | -1/+2 |
| | |||||
* | functions 'traceexec', 'callTM', and 'call_binTM' moved to other | Roberto Ierusalimschy | 2013-04-25 | 1 | -1/+34 |
| | | | | files to make 'lvm.c' a little smaller | ||||
* | remove of unecessary luaD_checkstack. (In some cases, C should | Roberto Ierusalimschy | 2012-08-16 | 1 | -5/+5 |
| | | | | | ensure stack space; in others, Lua can use the extra slots for temporary values.) | ||||
* | object tag keeps variant bits too -> no need for 'isC' field in | Roberto Ierusalimschy | 2012-01-20 | 1 | -5/+8 |
| | | | | Closures + more strick typing for closure variants | ||||
* | more uses of 'l_noret' | Roberto Ierusalimschy | 2011-11-30 | 1 | -3/+3 |
| | |||||
* | new type 'l_noret' for function that do not return | Roberto Ierusalimschy | 2011-10-07 | 1 | -6/+5 |
| | |||||
* | details (and missing 'break's) | Roberto Ierusalimschy | 2011-09-13 | 1 | -7/+6 |
| | |||||
* | upvalue names always can be NULL (if debug info was removed), so | Roberto Ierusalimschy | 2011-09-13 | 1 | -7/+13 |
| | | | | always check for that case | ||||
* | new implementation for 'getobjname': first search for relevant | Roberto Ierusalimschy | 2011-08-12 | 1 | -85/+87 |
| | | | | | instruction (new function 'findsetreg') and then try to build a meaningful name | ||||
* | no more 'luaH_setstr (used only once) + 'luaH_setint' receives value | Roberto Ierusalimschy | 2011-08-09 | 1 | -5/+7 |
| | | | | to be set. | ||||
* | stricter control (using tag variants) over closure kinds (Lua x C) | Roberto Ierusalimschy | 2011-06-02 | 1 | -12/+12 |
| | |||||
* | bug in OP_SELF when method name goes to a register | Roberto Ierusalimschy | 2011-04-28 | 1 | -12/+32 |
| | |||||
* | change in opcode OP_LOADNIL: B is used as a counter instead of a | Roberto Ierusalimschy | 2011-04-19 | 1 | -3/+3 |
| | | | | | register. (Avoids an assignment to R(B), not present in any other instruction.) | ||||
* | small bug (masked by wrong entry for OP_TEST in opcodes.c) | Roberto Ierusalimschy | 2011-04-18 | 1 | -1/+5 |
| | |||||
* | detail ('luai_apicheck' should be used always through macro 'api_check') | Roberto Ierusalimschy | 2011-04-18 | 1 | -2/+2 |
| | |||||
* | new instruction OP_LOADKX (to replace OP_LOADK with extra argument) | Roberto Ierusalimschy | 2011-04-07 | 1 | -4/+5 |
| | |||||
* | detail (cleaning trailing spaces) | Roberto Ierusalimschy | 2011-01-26 | 1 | -3/+3 |
| | |||||
* | getlocal/setlocal can access vararg parameters | Roberto Ierusalimschy | 2010-11-30 | 1 | -9/+22 |
| | |||||
* | 'proto->source' may be NULL (if dump strips debug information) | Roberto Ierusalimschy | 2010-10-11 | 1 | -5/+11 |
| | |||||
* | name "_ENV" configurable through 'luaconf.h' | Roberto Ierusalimschy | 2010-09-07 | 1 | -2/+2 |
| | |||||
* | 'getlocal' gets information about parameters of Lua functions | Roberto Ierusalimschy | 2010-06-21 | 1 | -6/+15 |
| | |||||
* | 'what' may be NULL in 'kname' | Roberto Ierusalimschy | 2010-06-16 | 1 | -2/+2 |
| | |||||
* | first implementation of light C functions | Roberto Ierusalimschy | 2010-04-14 | 1 | -15/+17 |
| | |||||
* | macro 'eqstr' was being used to compare non-string entities | Roberto Ierusalimschy | 2010-04-08 | 1 | -2/+2 |
| | |||||
* | new macro 'eqstr' | Roberto Ierusalimschy | 2010-04-05 | 1 | -6/+6 |
| | |||||
* | '_ENV' name permanently stored in global state for easier access | Roberto Ierusalimschy | 2010-03-13 | 1 | -2/+2 |
| | |||||
* | first version of _ENV; no more global variables | Roberto Ierusalimschy | 2010-03-12 | 1 | -21/+27 |
| | |||||
* | when finding a 'name' for a function, handle the case when the function | Roberto Ierusalimschy | 2010-03-05 | 1 | -2/+5 |
| | | | | is a for iterator | ||||
* | new instructions to optimize indexing on upvalues | Roberto Ierusalimschy | 2010-02-26 | 1 | -9/+26 |
| | |||||
* | "no value" added to array luaT_typenames + occurrences of "userdata" | Roberto Ierusalimschy | 2010-01-13 | 1 | -5/+5 |
| | | | | in that array unified in a single address | ||||
* | removed useless initialization | Roberto Ierusalimschy | 2010-01-11 | 1 | -2/+2 |
| | |||||
* | new debug info 'isvararg' and 'nparams' | Roberto Ierusalimschy | 2010-01-06 | 1 | -1/+9 |
| | |||||
* | details | Roberto Ierusalimschy | 2009-12-01 | 1 | -3/+7 |
| | |||||
* | detail in 'currentpc' (only needs to work for Lua functions) | Roberto Ierusalimschy | 2009-11-26 | 1 | -8/+4 |
| | |||||
* | new scheme for debug info about tail calls: no more 'fake' stack entries, | Roberto Ierusalimschy | 2009-11-25 | 1 | -32/+10 |
| | | | | but stack entry knows whether it was tail called | ||||
* | two small bugs: 'debug.getinfo' did not consider negative indices as out | Roberto Ierusalimschy | 2009-10-13 | 1 | -8/+10 |
| | | | | of range + 'debug.[gs]etlocal' crash on tail calls | ||||
* | information about upvalues (where they come from) kept in Proto structure, | Roberto Ierusalimschy | 2009-09-28 | 1 | -8/+3 |
| | | | | instead of sequence of pseudo-opcodes after OP_CLOSURE | ||||
* | handle extended opcodes (with OP_EXTRAARG) when checking metamethod | Roberto Ierusalimschy | 2009-09-28 | 1 | -1/+3 |
| | | | | calls | ||||
* | limit of constants per function changed to 2^26 using extra arguments | Roberto Ierusalimschy | 2009-09-23 | 1 | -2/+4 |
| | | | | to opcodes LOADK, GETGLOBAL, and SETGLOBAL | ||||
* | luaH_[gs]etnum renamed to luaH_[gs]etint (as they only accept integers, | Roberto Ierusalimschy | 2009-08-07 | 1 | -2/+2 |
| | | | | not generic numbers) | ||||
* | 'getline' renamed to 'getfuncline' (to avoid problems with POSIX) | Roberto Ierusalimschy | 2009-06-10 | 1 | -2/+2 |
| |