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
Fri, 28 May 2010 02:19:34 +0100 Matthew Wild LValueFromValue handles undefined and objects/arrays file | diff | annotate
Fri, 28 May 2010 02:18:53 +0100 Matthew Wild Give LValue precall() and call() methods, give functions a vm property. file | diff | annotate
Mon, 24 May 2010 15:22:45 +0100 Matthew Wild Show return values on exit file | diff | annotate
Mon, 24 May 2010 15:22:29 +0100 Matthew Wild Support for return values from LVM.call() file | diff | annotate
Mon, 24 May 2010 14:12:14 +0100 Matthew Wild Merge backout file | diff | annotate
Mon, 24 May 2010 14:08:50 +0100 Matthew Wild Backed out changeset 741b953fcc5f (premature optimisations == bad) file | diff | annotate
Mon, 24 May 2010 13:42:34 +0100 Matthew Wild Exit with failure code on error file | diff | annotate
Mon, 24 May 2010 12:55:03 +0100 Matthew Wild Give LFunctions a vm property file | diff | annotate
Mon, 24 May 2010 12:54:20 +0100 Matthew Wild Localize instructions and reg from frame file | diff | annotate
Sun, 23 May 2010 19:54:45 +0100 Matthew Wild Split LVM.run() into LVM.call()/LVM.run() file | diff | annotate
Sun, 23 May 2010 17:31:57 +0100 Matthew Wild Implement OP_TEST and OP_JMP file | diff | annotate
Sun, 23 May 2010 17:31:41 +0100 Matthew Wild Implement OP_LOADBOOL file | diff | annotate
Sun, 23 May 2010 17:31:15 +0100 Matthew Wild Initialise all stack slots to nil when calling a chunk file | diff | annotate
Sun, 23 May 2010 17:30:43 +0100 Matthew Wild Allow LValues with a value of 'false' to be create (it was converted to 'null') file | diff | annotate
Sun, 23 May 2010 13:48:39 +0100 Matthew Wild Implement OP_SELF file | diff | annotate
Sun, 23 May 2010 13:48:29 +0100 Matthew Wild Fix for error handling to handle string exceptions file | diff | annotate
Sun, 23 May 2010 13:28:45 +0100 Matthew Wild OP_FORPREP, OP_FORLOOP: Support for numerical for loops file | diff | annotate
(0) -60 tip

mercurial