Jelmer Cormont
Results
2
issues of
Jelmer Cormont
Public instance fields that are defined on the class itself do not go through prototype inheritance. Therefore, the current method of making them observable (adding a setter on the prototype,...
bug
In the example below, the binding to `foo` doesn't seem to work: ```ts class MyActivity extends PageViewActivity.with( UICell.with( UILabel.withText(bind("foo")) ) ) { @shadowObservable("bar") get foo() { return this.bar + 1...
bug