Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lua_parse has a different interface | Roberto Ierusalimschy | 1994-11-09 | 1 | -2/+2 |
| | |||||
* | lua_call cannot be a macro, because it would push the function | Roberto Ierusalimschy | 1994-11-09 | 1 | -3/+2 |
| | | | | over the parameters | ||||
* | lua_debugline is kept in the stack 'funcstack' when debugging. | Roberto Ierusalimschy | 1994-11-09 | 1 | -5/+11 |
| | |||||
* | because lua_error does a longjmp, there is no need to a variable | Roberto Ierusalimschy | 1994-11-09 | 1 | -69/+36 |
| | | | | | | | 'err'. lua_parse has a different interface, to allow the free of the main block even if compilation fails. small changes in the debug system. | ||||
* | garbage collection for locked objects | Roberto Ierusalimschy | 1994-11-08 | 1 | -3/+9 |
| | |||||
* | error function for Lua | Roberto Ierusalimschy | 1994-11-08 | 2 | -2/+11 |
| | |||||
* | lock mechanism | Roberto Ierusalimschy | 1994-11-08 | 4 | -5/+88 |
| | |||||
* | new API | Roberto Ierusalimschy | 1994-11-07 | 2 | -21/+74 |
| | |||||
* | new API: lua_Object now is an integer | Roberto Ierusalimschy | 1994-11-07 | 6 | -141/+112 |
| | |||||
* | first implementation of 'fallbacks' | Roberto Ierusalimschy | 1994-11-07 | 1 | -115/+202 |
| | |||||
* | Type renamed to lua_Type | Roberto Ierusalimschy | 1994-11-07 | 1 | -2/+2 |
| | |||||
* | module to implement default fallbacks and lock mechanisms | Roberto Ierusalimschy | 1994-11-07 | 2 | -0/+67 |
| | |||||
* | inheritance is not built-in | Roberto Ierusalimschy | 1994-11-07 | 1 | -35/+5 |
| | |||||
* | new opcodes for '>' and '>=' | Roberto Ierusalimschy | 1994-11-06 | 2 | -4/+7 |
| | |||||
* | new global function 'setfallback' | Roberto Ierusalimschy | 1994-11-04 | 1 | -5/+7 |
| | |||||
* | small corrections. | Roberto Ierusalimschy | 1994-11-04 | 1 | -2/+2 |
| | |||||
* | creation of function do_protectedrun, that executes lua code enclosed | Roberto Ierusalimschy | 1994-11-04 | 1 | -220/+96 |
| | | | | | in a setjmp, with error recovery. Elimination of functions lua_isnil, etc. | ||||
* | Elimination of functions lua_isnil, etc. | Roberto Ierusalimschy | 1994-11-04 | 1 | -8/+12 |
| | |||||
* | more functions from opcode.c | Roberto Ierusalimschy | 1994-11-03 | 2 | -17/+44 |
| | | | | | | 'open_file' and 'open_string' return an error message lua_type renamed to luaI_type (I for Internal, as this function is not exported outside lua) | ||||
* | there is no need of predefined constants. | Roberto Ierusalimschy | 1994-11-03 | 1 | -14/+4 |
| | |||||
* | RESET is generated at codereturn. | Roberto Ierusalimschy | 1994-11-03 | 1 | -4/+2 |
| | |||||
* | because lua_error now does a longjmp, many functions do not need | Roberto Ierusalimschy | 1994-11-03 | 1 | -40/+14 |
| | | | | to check conditions. | ||||
* | function 'lua_addfile' returns an error message | Roberto Ierusalimschy | 1994-11-03 | 2 | -14/+8 |
| | |||||
* | prototype for function 'yylex' | Roberto Ierusalimschy | 1994-11-03 | 1 | -38/+3 |
| | |||||
* | new way to call functions, plus several small changes. This is | Roberto Ierusalimschy | 1994-11-02 | 4 | -781/+777 |
| | | | | a temporary version! | ||||
* | tags T_NIL, etc, changed to LUA_T_NIL, etc | Roberto Ierusalimschy | 1994-11-02 | 2 | -11/+87 |
| | | | | some lua_ functions changed form opcode.c to here | ||||
* | tags T_NIL, etc, changed to LUA_T_NIL, etc | Roberto Ierusalimschy | 1994-11-02 | 2 | -40/+40 |
| | |||||
* | frees filename from file stack | Roberto Ierusalimschy | 1994-11-02 | 1 | -2/+2 |
| | |||||
* | CREATEARRAY now has an argument, the size of the array to create. | Roberto Ierusalimschy | 1994-11-01 | 2 | -14/+18 |
| | |||||
* | small corrections | Roberto Ierusalimschy | 1994-11-01 | 3 | -18/+6 |
| | |||||
* | deletion of 'include mm.h' | Roberto Ierusalimschy | 1994-10-21 | 2 | -42/+1 |
| | |||||
* | implementacao das funcoes 'date', 'time' e 'beep'. | Waldemar Celes | 1994-10-19 | 1 | -4/+46 |
| | | | | troca de nome de 'abort' para 'exit' | ||||
* | deletion of 'include mm.h' | Roberto Ierusalimschy | 1994-10-18 | 3 | -10/+3 |
| | |||||
* | new parameter in function 'tree_create'. Maybe we will return to | Waldemar Celes | 1994-10-18 | 1 | -7/+21 |
| | | | | version 1.1 | ||||
* | split to 'ugly.h'. | Waldemar Celes | 1994-10-18 | 1 | -24/+7 |
| | |||||
* | definition of ugly tokens | Waldemar Celes | 1994-10-18 | 1 | -0/+24 |
| | |||||
* | remove of 'printf' for debuging. | Roberto Ierusalimschy | 1994-10-17 | 1 | -3/+1 |
| | |||||
* | power operator (^). | Waldemar Celes | 1994-10-17 | 1 | -50/+37 |
| | | | | | | no more contructors (@). methods can be called on indexed variables. fixed debuging information. | ||||
* | files end with EOF, instead of 0. | Waldemar Celes | 1994-10-17 | 1 | -5/+3 |
| | |||||
* | adaptative garbage collection. | Waldemar Celes | 1994-10-17 | 3 | -9/+14 |
| | |||||
* | new algorithm for reading floats. | Waldemar Celes | 1994-10-17 | 1 | -14/+35 |
| | | | | files end with EOF, instead of 0. | ||||
* | new operations POWOP (power) and PUSHMARKMET (for marking method calls). | Waldemar Celes | 1994-10-17 | 2 | -6/+25 |
| | | | | remove of operation PUSHOBJECT. | ||||
* | Aumentar buffer para saida. | Waldemar Celes | 1994-10-13 | 1 | -2/+2 |
| | |||||
* | Acertar bug para evitar formato "%5.0s", por exemplo. | Waldemar Celes | 1994-10-13 | 1 | -3/+3 |
| | |||||
* | Correcao do tratamento de erro reportado dentro de uma funcao. | Waldemar Celes | 1994-10-11 | 4 | -14/+16 |
| | |||||
* | Implementacao das funcoes para conversao de angulos rad r deg. | Waldemar Celes | 1994-10-11 | 1 | -1/+27 |
| | |||||
* | Mudancas na sintaxe para a versao 2.0. Igual relacional passa | Waldemar Celes | 1994-10-11 | 1 | -62/+42 |
| | | | | | | | a ser ==, tiramos o colchete na criacao de tabelas usando apenas chaves (podendo fazer inicializacao mista). O caracter @ so' deve estar presente quando se tem construtores associados. / | ||||
* | implementacao de busca no campo godparent em substituicao | Waldemar Celes | 1994-10-11 | 1 | -72/+46 |
| | | | | ao campo parents. | ||||
* | consertar bug no formato real com zero casas decimais e | Waldemar Celes | 1994-10-07 | 1 | -3/+36 |
| | | | | implementar a funcao readuntil. | ||||
* | retirar especificador de formato %n da funcao ToReal e | Waldemar Celes | 1994-09-27 | 1 | -5/+4 |
| | | | | acertar funcao lua_convtonumber. |