vm/src/main/java/org/apidesign/vm4brwsr/ByteCodeToJavaScript.java
Fri, 01 Feb 2013 15:19:16 +0100 instanceof works on null
Fri, 01 Feb 2013 09:00:30 +0100 Support for Long unary "-"
Fri, 01 Feb 2013 06:09:18 +0100 Long operator >>> and tests
Thu, 31 Jan 2013 20:37:12 +0100 Long binary XOR implementation + tests
Thu, 31 Jan 2013 20:19:38 +0100 Added binary OR for Long + tests for AND and OR
Thu, 31 Jan 2013 15:26:09 +0100 Added subtraction for Long + tests
Wed, 30 Jan 2013 22:23:21 +0100 Long tests moved (temporarily) among VM tests
Mon, 28 Jan 2013 00:15:38 +0100 using Number for as a base for Long number type
Sun, 27 Jan 2013 10:19:02 +0100 merge with trunk
Sat, 26 Jan 2013 08:47:05 +0100 In order to support fields of the same name in subclasses we are now prefixing them with name of the class that defines them. To provide convenient way to access them from generated bytecode and also directly from JavaScript, there is a getter/setter function for each field. It starts with _ followed by the field name. If called with a parameter, it sets the field, with a parameter it just returns it.
Fri, 25 Jan 2013 15:44:09 +0100 Merge with trunk
Fri, 25 Jan 2013 15:38:12 +0100 Support for additional instructions
Fri, 25 Jan 2013 11:00:52 +0100 Long arithmetic prototype, Long currently represented by separate JavaScript object with two JS-Numbers.
Thu, 24 Jan 2013 17:08:02 +0100 isInstance, casts and isAssignableFrom for arrays
Thu, 24 Jan 2013 00:11:04 +0100 Constant pool can reference class array
Mon, 21 Jan 2013 15:56:54 +0100 Inclusion of knockout.js requires class definitions to end with ';'
Mon, 21 Jan 2013 13:39:23 +0100 requireScript needs to work also in lazy mode
Sat, 19 Jan 2013 06:07:49 +0100 Merging java.util.reflect.Array work to default branch
Fri, 18 Jan 2013 18:52:02 +0100 Creation of multi dimensional arrays unified under java.lang.reflect.Array
Fri, 18 Jan 2013 17:04:16 +0100 Reusing methods from java.lang.reflect.Array when creating new instances of one-dimensional arrays
Fri, 18 Jan 2013 15:33:03 +0100 Var is the Answer
Tue, 15 Jan 2013 12:44:33 +0100 ArrayIndexOutOfBoundsEx on writes
Tue, 15 Jan 2013 12:38:49 +0100 ArrayIndexOutOfBoundsEx when reading from array
Tue, 15 Jan 2013 12:26:19 +0100 Initialize multi dimensional arrays with 0 for primitive types
Tue, 15 Jan 2013 11:53:07 +0100 Bringing Martin's integer, short, byte arithmetic to default branch
Tue, 15 Jan 2013 09:46:21 +0100 Proper type of subarrays of multi dimensional array
Mon, 14 Jan 2013 18:21:48 +0100 More reflection for arrays. getClass() and isArray() work.
Mon, 14 Jan 2013 14:20:49 +0100 Fill object arrays with null, otherwise use 0
Mon, 14 Jan 2013 13:21:40 +0100 Moving integer arithmetic expressions into Number.prototype
Mon, 14 Jan 2013 11:30:56 +0100 Using 'this' in @JavaScriptBody instance methods
Mon, 14 Jan 2013 10:57:51 +0100 Following standard object oriented calling conventions. Method run of Runnable r can now be called as r.run__V()
Mon, 14 Jan 2013 09:47:38 +0100 Byte arithmetic - added tests + conversion from int->byte.
Mon, 14 Jan 2013 09:17:18 +0100 Short arithmetic - added tests and conversion int->short.
Sun, 13 Jan 2013 23:07:54 +0100 Integer arithmetic expressions extracted into simple functions.
Fri, 11 Jan 2013 16:36:28 +0100 merge with trunk
Thu, 10 Jan 2013 20:15:11 +0100 Can read resources as streams
Thu, 10 Jan 2013 13:09:19 +0100 catch (Throwable t) caches everything (as usual in Java) including JavaScript own errors.
Thu, 03 Jan 2013 16:20:21 +0100 Merging Lubo's fix in as all tests continue to pass
Thu, 03 Jan 2013 16:16:04 +0100 Array flag in ByteCodeToJavaScript.countArgs is not reset to false for object types. The following signature '([Ljava/lang/Object;)I' is incorrectly reported to return array
Thu, 03 Jan 2013 11:29:22 +0100 Using 'o' instead of full name of java.lang.Object
Thu, 03 Jan 2013 11:20:40 +0100 Using 's' instead of Ljava_lang_String_2
Mon, 31 Dec 2012 17:50:27 +0100 Finally block is supported
Mon, 31 Dec 2012 12:44:51 +0100 Multiple exceptions in a single method supported
Sat, 29 Dec 2012 20:20:59 +0100 Ability to eliminate debug messages
Sat, 29 Dec 2012 20:10:10 +0100 Use only single try/catch on when there is no branching point
Sat, 29 Dec 2012 19:46:09 +0100 Constructors are not assigned to prototype, as they are not inherited. newInstance checks for access rights.
Fri, 28 Dec 2012 12:35:32 +0100 Class.getMethods returns only public methods
Mon, 24 Dec 2012 08:19:55 +0100 Initial attempt to merge current default branch with exceptions
Thu, 20 Dec 2012 21:39:16 +0100 Loaded classes need to have their static initializes invoked. Before accessing static field of a class, initializers need to be executed as well.
Thu, 20 Dec 2012 08:59:47 +0100 Support for reflection on primitive types. All tests finish in the browser.
Tue, 18 Dec 2012 20:19:11 +0100 Added test for + - * operations in int32 arithmetic, updated JS generator to produce code for correct int32 arithmetic.
Mon, 17 Dec 2012 09:47:08 +0100 Lines with comments are ignored in V8 function dump. Include some curly braces
Sat, 15 Dec 2012 21:37:57 +0100 Refuse to process classfiles that are not compiled with target at least 1.6
Fri, 14 Dec 2012 11:15:37 +0100 Merge with trunk
Thu, 13 Dec 2012 23:20:47 +0100 Providing JavaScript specific implementations of Hashtable and Vector. Those should likely be faster for the JavaScript VM than interpreting bytecode. This is the way to get the best of JavaScript and yet provide reasonably well working implementation in Java.
Wed, 12 Dec 2012 11:04:02 +0100 Type specific local variables
Wed, 12 Dec 2012 09:09:42 +0100 Merging lazyvm into default branch - it seems to be stable enough to be used.
Tue, 11 Dec 2012 11:05:06 +0100 VM in VM properly processes class constants
Tue, 11 Dec 2012 09:36:44 +0100 Creating Bck2Brwsr entrypoint to for those who wish to generate their JavaScript based Java VM
Sun, 09 Dec 2012 16:44:27 +0100 Need the ability to cast to any type to successfully run tests on VM with exceptions support