Fix a crash when properties have setters but not getters.

This commit is contained in:
David Anderson
2014-10-29 20:51:03 -07:00
parent 86ddf1fea0
commit e7fc06910b
4 changed files with 27 additions and 3 deletions
@@ -0,0 +1,12 @@
methodmap Crab
{
property int X {
public native set(int value);
}
}
public main()
{
Crab crab;
crab.X = 12;
}