Skip to content

Instantly share code, notes, and snippets.

@rewbs
Created October 4, 2010 20:38
Show Gist options
  • Save rewbs/610393 to your computer and use it in GitHub Desktop.
Save rewbs/610393 to your computer and use it in GitHub Desktop.
import com.vladium.emma.rt.RT;
public class Foo {
private static final boolean $VRc[][]; /* synthetic field */
private static final long serialVersionUID = 0xfcfe2d92f94ba634L; /* synthetic field */
static {
boolean aflag[] = $VRi()[2];
aflag[0] = true;
}
public Foo() {
boolean aflag[] = ($VRc != null ? $VRc : $VRi())[0];
aflag[0] = true;
}
public int doStuff() {
boolean aflag[] = ($VRc != null ? $VRc : $VRi())[1];
int x = 0;
aflag[0] = true;
if(++x > 0) {
System.out.println("Bar");
aflag[1] = true;
}
aflag[2] = true;
return x;
}
private static boolean[][] $VRi() {
boolean aflag[][] = $VRc = new boolean[3][];
aflag[0] = new boolean[1];
aflag[1] = new boolean[3];
aflag[2] = new boolean[1];
RT.r(aflag, "test/Foo", 0x6e1c4dc1237e245fL);
return aflag;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment