Derrell Lipman

Results 115 comments of Derrell Lipman

@ElliotNB Sorry about the formatting issue. I try to be careful to match the format of code I'm changing, but obviously missed it here. Fixed now.

Sounds like a great idea to abstract that communication!

There are some timing issues. The native window or iframe app has to be loaded before you can do any communication. It requires checking that the `window` object of the...

@johnspackman, this looks great! I am still digesting it, but have a few comments/questions in the meantime: On Mon, Jun 6, 2022 at 4:15 PM John Spackman ***@***.***> wrote: >...

If anyone is interested in my work-in-progress on reimplementing the Class and Property system, see the repository (and its README, with a list of what's already supported) at https://github.com/derrell/proxy-tests Comments...

Thanks, @johnspackman. I don't understand your question, though. `qx.Class` is effectively a static class, or rather, it has only static members. I don't think there were ever any instances of...

I'm guessing that your `setXxx()` method intended to `return promise;` at the end. We don't have that option. Now that we have an implementation that implements first-class properties, `setXxx(value)` is...

In the new implementation, based on prior gitter discussion, when `setXxx()` is given a promise as the value, it looks to see if `property.check == "Promise"` and if not, it...

The `setX` method executes the proxy `set` method which has its own return value (a boolean that means the value was saved; if it returns false, an error is thrown...

Mutation detection, although untested yet since merging the proxy-test implementation into qooxdoo, is implemented via the property method `isAsyncSetActiveXxx()`. It only applies to `setXxxAsync()`, however, not to synchronous setters.