vm/src/main/java/org/apidesign/vm4brwsr/ByteCodeToJavaScript.java
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
Sun, 09 Dec 2012 16:43:36 +0100 Null can be casted to any type
Sun, 09 Dec 2012 16:25:36 +0100 Using plain array instead of ArrayDeque
Sun, 09 Dec 2012 16:16:19 +0100 Rather than exposing Vector, providing abstraction to encapsulate manipulation with TrapData via 'iterator'
Sat, 08 Dec 2012 10:32:04 +0100 'synched w/ trunk'
Sat, 08 Dec 2012 08:19:46 +0100 Original version of exception handling.
Fri, 07 Dec 2012 19:16:21 +0100 Using format string for code generation
Fri, 07 Dec 2012 15:57:14 +0100 Merge with trunk
Fri, 07 Dec 2012 15:02:35 +0100 Type specific stack variables
Thu, 06 Dec 2012 21:31:09 +0100 Hiding all generated class methods from sight of external users. Exposing only bck2brwsr entry point function
Thu, 06 Dec 2012 16:11:48 +0100 Moving the definition of Array.prototype.fillNulls() outside of the generator into the emulation .js file
Wed, 05 Dec 2012 10:03:58 +0100 Can obtain annotation from a method
Tue, 04 Dec 2012 12:06:27 +0100 ClassTest needs to be adjusted to new naming scheme
Tue, 04 Dec 2012 11:21:10 +0100 Merging in JNI-like naming scheme from default branch
Tue, 04 Dec 2012 09:16:53 +0100 Using the same mangling scheme as JNI
Mon, 03 Dec 2012 14:44:49 +0100 Merge with trunk
Sun, 02 Dec 2012 23:10:51 +0100 Rewriting String to use more of @JavaScriptBody & co.
Sun, 02 Dec 2012 21:00:12 +0100 Ability to control prototypes. Making sure any JavaScript Object is instance of Java object
Sun, 02 Dec 2012 14:01:17 +0100 Annotations with string attributes
Sun, 02 Dec 2012 12:39:51 +0100 Using the attribute type to in the attribute method name
Sun, 02 Dec 2012 12:26:14 +0100 Initial support for runtime annotations
Sun, 02 Dec 2012 06:26:32 +0100 Merging native methods exceptions
Sun, 02 Dec 2012 06:25:28 +0100 Throw exception when reaching native method without JavaScript implementation
Sat, 01 Dec 2012 15:48:12 +0100 Optimistic support for Class.newInstance