Before this fix the following code fails to build because the function argument is passed to Observable.const (instead of the underlying class member which actually stores the constant)
class MyModel implements Model {
@:constant var foo:Int;
public function new(foo:Int) {
this = { foo: foo }
}
}
Before this fix the following code fails to build because the function argument is passed to
Observable.const
(instead of the underlying class member which actually stores the constant)