class Issue78Model implements Model {
@:constant var foo:Int;
@:computed var bar:Int = foo + 1; // <-- this foo currently references the constructor argument
public function new(foo:Int) {
this = { foo: foo + 1 }
}
}
I think we need a way to somehow restore the reference to class member in proper places...
This is an extended problem of #78.
I think we need a way to somehow restore the reference to class member in proper places...