Mon, 22 Nov 2010 02:34:26 +0000 Matthew Wild Implement LValue.len() and OP_LEN (no metamethod yet) file | diff | annotate
Mon, 22 Nov 2010 02:33:56 +0000 Matthew Wild Switch to [] for representing tables (for now) file | diff | annotate
Mon, 22 Nov 2010 02:32:01 +0000 Matthew Wild Don't use this.LValue() inside the VM - it's for JS types only file | diff | annotate
Mon, 22 Nov 2010 02:31:16 +0000 Matthew Wild Fix OP_CALL to handle the case of B==1 (no parameters) and fix an off-by-one error that wouldn't fill the stack with nils properly file | diff | annotate
Sun, 21 Nov 2010 21:37:07 +0000 Matthew Wild Implement OP_MOD, OP_POW, OP_UNM, OP_NOT (no metamethods yet) file | diff | annotate
Sun, 21 Nov 2010 21:25:24 +0000 Matthew Wild Implement OP_MUL (no metamethod yet) file | diff | annotate
Sun, 21 Nov 2010 21:17:59 +0000 Matthew Wild Fix FORPREP to not blat R(A+3) - not sure what that line thought it was doing file | diff | annotate
Sun, 21 Nov 2010 16:50:39 +0000 Matthew Wild Add unimplemented OP_* codes as reference file | diff | annotate
Sun, 21 Nov 2010 16:35:08 +0000 Matthew Wild Fix exception in stack printing for some tests when debug mode is enabled file | diff | annotate
Sun, 21 Nov 2010 16:29:29 +0000 Matthew Wild Prettier stack printing in debugMode file | diff | annotate
Sun, 21 Nov 2010 16:28:40 +0000 Matthew Wild Fix traceback in error handling... file | diff | annotate
Sun, 21 Nov 2010 16:28:17 +0000 Matthew Wild Add string lib, with gmatch function only for now file | diff | annotate
Sun, 21 Nov 2010 16:27:41 +0000 Matthew Wild Implement OP_SETLIST file | diff | annotate
Sun, 21 Nov 2010 16:27:18 +0000 Matthew Wild Implement OP_TFORLOOP file | diff | annotate
Sun, 21 Nov 2010 16:25:08 +0000 Matthew Wild Implement OP_CONCAT (no metamethod yet) file | diff | annotate
Sat, 20 Nov 2010 15:19:42 +0000 Matthew Wild Remove some debugging in math.ldexp() accidentally committed file | diff | annotate
Sat, 20 Nov 2010 15:19:19 +0000 Matthew Wild Implement OP_DIV (no metamethod yet) file | diff | annotate
Sat, 20 Nov 2010 12:13:12 +0000 Matthew Wild Don't try and print current position in the Lua script with no valid frame file | diff | annotate
Sat, 20 Nov 2010 12:12:46 +0000 Matthew Wild Rename default_environment to _G, use registerLib() for baselib and add math lib with 2 ldexp, floor file | diff | annotate
Sat, 20 Nov 2010 12:11:34 +0000 Matthew Wild Add LVM().registerLib(env, name, lib) to register a table of native functions to an environment. file | diff | annotate
Sat, 20 Nov 2010 12:10:53 +0000 Matthew Wild Fix OP_SUB to use RK() too... file | diff | annotate
Sat, 20 Nov 2010 11:11:17 +0000 Matthew Wild Print out location at which errors occur, yay! file | diff | annotate
Sat, 20 Nov 2010 11:11:01 +0000 Matthew Wild Pass sourceName to child chunks (in binary files it's only set in the top-level chunk) file | diff | annotate
Sat, 20 Nov 2010 11:07:24 +0000 Matthew Wild Disable debugMode, accidentally committed file | diff | annotate
Fri, 19 Nov 2010 21:06:50 +0000 Matthew Wild Implement OP_LE (no metamethod yet) file | diff | annotate
Fri, 19 Nov 2010 20:52:08 +0000 Matthew Wild Fix OP_LT to respect A, and move OP_EQ to live next to it in the switch() for readability file | diff | annotate
Fri, 19 Nov 2010 19:49:25 +0000 Matthew Wild Fix OP_LT to use RK() file | diff | annotate
Fri, 19 Nov 2010 19:42:25 +0000 Matthew Wild Add assert() to baselib, real tests possible at last file | diff | annotate
Fri, 19 Nov 2010 19:41:57 +0000 Matthew Wild Add LValue.truth() to return whether a value is (not(false) and not(nil)) file | diff | annotate
Fri, 19 Nov 2010 19:28:48 +0000 Matthew Wild Fix OP_SETTABLE to use RK() helper file | diff | annotate
Fri, 19 Nov 2010 19:22:40 +0000 Matthew Wild Fix type() in baselib to return an LValue file | diff | annotate
Fri, 19 Nov 2010 19:22:20 +0000 Matthew Wild Fix for passing arguments to the entry call frame file | diff | annotate
Fri, 19 Nov 2010 19:21:48 +0000 Matthew Wild Implement OP_EQ file | diff | annotate
Fri, 19 Nov 2010 19:21:36 +0000 Matthew Wild Give LValue an equals() method, returns true/false if the value == the first argument (checks metamethod) file | diff | annotate
Fri, 19 Nov 2010 16:57:32 +0000 Matthew Wild Fix native function return values for the new calling interface file | diff | annotate
Fri, 19 Nov 2010 16:08:51 +0000 Matthew Wild Update all opcodes to use RK() that need it file | diff | annotate
Fri, 19 Nov 2010 16:06:12 +0000 Matthew Wild Add new RK() helper and fix OP_ADD to use it (so it loads constants properly) file | diff | annotate
Fri, 19 Nov 2010 16:05:36 +0000 Matthew Wild Fix OP_ADD code to use new LValue format file | diff | annotate
Fri, 19 Nov 2010 16:04:51 +0000 Matthew Wild Support for __add metamethod file | diff | annotate
Fri, 19 Nov 2010 16:04:30 +0000 Matthew Wild New Lua<->native function interface, simpler. Added type() to baselib. file | diff | annotate
Fri, 19 Nov 2010 16:02:55 +0000 Matthew Wild Large overhaul - every LValue (and LBinaryChunk) now has a valid 'vm' property, so we know in which LVM to call it or its metamethods file | diff | annotate
Fri, 19 Nov 2010 13:09:25 +0000 Matthew Wild Give LValue an add() method, to eventually respect metamethods file | diff | annotate
Fri, 19 Nov 2010 04:05:19 +0000 Matthew Wild Change some decimal constants to hex for consistency file | diff | annotate
Fri, 19 Nov 2010 03:48:41 +0000 Matthew Wild Switch to sys.puts for all output for now, leaving browser compatibility for the moment. file | diff | annotate
Fri, 19 Nov 2010 03:48:04 +0000 Matthew Wild Formalise the beginnings of a baselib, add setmetatable. file | diff | annotate
Fri, 19 Nov 2010 03:47:22 +0000 Matthew Wild Add FIXME for something that works, but shouldn't... file | diff | annotate
Fri, 19 Nov 2010 03:43:47 +0000 Matthew Wild splice != slice. Dear Javascript, this is only one reason for why I don't like you. file | diff | annotate
Fri, 19 Nov 2010 03:43:03 +0000 Matthew Wild Correct off-by-one in return value limits file | diff | annotate
Fri, 19 Nov 2010 03:42:17 +0000 Matthew Wild New interface for native Javascript functions called from Lua file | diff | annotate
Fri, 19 Nov 2010 03:39:40 +0000 Matthew Wild Support for numbers in LValueFromValue() file | diff | annotate
Fri, 19 Nov 2010 03:39:00 +0000 Matthew Wild Add LValue.toString() file | diff | annotate
Fri, 19 Nov 2010 03:38:41 +0000 Matthew Wild Support for tables in __index file | diff | annotate
Fri, 19 Nov 2010 03:38:18 +0000 Matthew Wild Implement OP_TESTSET file | diff | annotate
Fri, 19 Nov 2010 03:37:51 +0000 Matthew Wild Implement OP_ADD, OP_SUB, OP_LT file | diff | annotate
Fri, 28 May 2010 02:23:39 +0100 Matthew Wild Move try {} block so it covers more of the VM initialization file | diff | annotate
Fri, 28 May 2010 02:23:00 +0100 Matthew Wild Add test __index handler to catch use of nil globals file | diff | annotate
Fri, 28 May 2010 02:21:54 +0100 Matthew Wild Support for __index metamethod file | diff | annotate
Fri, 28 May 2010 02:21:30 +0100 Matthew Wild Add LValue.setMetatable() file | diff | annotate
Fri, 28 May 2010 02:20:58 +0100 Matthew Wild Pass vm as 'this' to native functions file | diff | annotate
Fri, 28 May 2010 02:20:35 +0100 Matthew Wild More reliable detection of when we're at a native/Lua call boundary file | diff | annotate
(0) -100 -60 tip

mercurial