Support for synthetic extensions in codegen

This commit is contained in:
Valentin Kipyatkov
2015-07-08 15:07:16 +03:00
parent 2e351f3e4d
commit 08754b9fc0
11 changed files with 120 additions and 9 deletions

View File

@@ -0,0 +1,11 @@
class JavaClass {
private int myX = 0;
public int getX() {
return myX;
}
public void setX(int x) {
myX = x;
}
}