Alexander Kiselev
Alexander Kiselev
> As to the initial API proposal. > I saw in some issues the idea to wrap markup with new `{#try}{:catch}` template expressions. I find it limiting: you may want...
> I wasn't able to fully review this (yet) but the fact that mbql clauses were made optional in some places makes me think that this would break existing features....
> I'd really appreciate it if you could break this PR down at least into two (JS > TS, feature changes). I noticed a few drills were heavily changed and...
> My suggestion would be that the original component is destroyed and a new one is created in its place with the new const value. > This would be similar...
I renamed the method to `is_destroyed` and added a better doc comment explaining the race condition
What is an "agent"?
I actually think this should be in cxx-qt-lib proper with `QQmlEngine` because that's going to be the main access point for `QJSValue`. QML elements can get their `QQmlEngine` instance via...
That was just the easiest way to get JSON in and out of Javascript for a multiprocess extension system with user defined types. It also helped with build times since...
For what it's worth, I implemented this using a template helper: ```cpp template T *qqmlengineSingletonInstance(QQmlEngine &engine, const QString &module, const QString &name) { auto ptr = engine.template singletonInstance( QAnyStringView(module), QAnyStringView(name));...