sketch of Compiler.compileNative() and ifnull instruction implementation

This commit is contained in:
Joel Dice
2007-09-28 17:41:03 -06:00
parent 60eeb73e0f
commit 79603e284d
8 changed files with 572 additions and 257 deletions

View File

@ -20,9 +20,10 @@ public class Instructions {
int c = a + b;
Instructions i = new Instructions();
i.foo("hello");
i.bar("hello");
baz("hello");
String s = "hello";
i.foo(s);
i.bar(s);
baz(s);
int d = alpha;
beta = 42;