Ian Farmer
737c5e2855
Various changes:
...
(1) New lua compatibility bindings, including select() and math functions
(2) fix some VM bugs
(3) fix some table bugs, and attempt to restore metatable functionality.
2007-08-01 04:15:27 +00:00
James Roseborough
8bf4c82a12
Rework the main API"s that implement the calling convention. Provide utility methods to get arguments that were supplied, and provide return values. Add a VM interface to clarify the relationship between the VM, things that call the VM, and things that are called by the VM. Make the code more closely aligned with the C++ version.
2007-07-24 05:06:10 +00:00
Ian Farmer
ee5007e718
Add implicit LString to number coercions.
2007-07-22 06:20:14 +00:00
Ian Farmer
e1d6ddf99c
New autoload and math test cases. Currently autoload does not work because
...
the GETGLOBAL instruction does not handle the case where a metatable method
is invoked.
2007-07-21 04:44:22 +00:00
Ian Farmer
b4ac032fd7
Fix the NOT instruction. Includes test case.
2007-07-21 04:08:28 +00:00
Ian Farmer
635f127cd0
Add new built-in function type() that returns the name of the type of
...
the given value as a string. Includes test case.
2007-07-16 02:37:08 +00:00
Ian Farmer
c65dec54fb
Fix a bug in how comparison instructions are handled: the 'a' intruction field
...
was ignored. Includes new test case.
2007-07-15 20:33:20 +00:00
Ian Farmer
2a28925f74
Fix a bug in how OP_SETLIST is handled. Includes new test case.
2007-07-12 04:06:41 +00:00
Ian Farmer
f7d6a49acb
Add a new test case for upvalues, and enhance upvalue handling so that
...
they pass.
2007-07-09 04:10:25 +00:00
Ian Farmer
45964d7e22
Add simple test for correct upvalue handling.
2007-07-09 01:43:34 +00:00
Ian Farmer
241edfbf37
Added a JUnit test case. Unfortunately, it will almost certainly not work on
...
Windows in its present form, and only one of the test cases passes.
In addition two changes to print() were made: output can be redirected to
an arbitrary OutputStream and tabs are no longer printed at the end of
each line.
2007-07-04 04:25:06 +00:00