Brian Raymes
Brian Raymes
I am having a potentially related issue. At the moment, no known steps, but I have some observations that may help. If this is a distinctly new issue, I'll be...
Interesting. My project is fairly large. I will give that a try and report back. Thank you.
I believe this has helped for now. My Royale project is roughly at 1,500 files and growing. Haven't seen the issue since increasing the memory. I'll report more findings as...
This fix appeared to be short lived, or coincidence. It appears to be happening more and more. I've been tweaking the values, for instance, currently at: ```-Xmx6144m -Xms2048m -Djava.awt.headless=true``` It's...
In my case, the `someProperty` was null, not `config`. If `config` were null, I would expect the bindings to not show anything. I can obviously add null protection, but shouldn't...
Oh, I didn't realize my example was a bit ambiguous. "someObject" wasn't to mean the type Object, but just any object. In my case, it was strongly typed; there was...
As for runtime, I've noticed some strange issues with Royale that all seem related. Things stop working at some level of execution, but do not error or warn the user...
> Similarly, something like `array[0]` or `collection.getItemAt(0)` will usually be typed as `*` by default. You need to cast it to be sure that the compiler sees the correct type....
For keyboard users, you can create conditional macros: https://github.com/microsoft/vscode/issues/10952#issuecomment-634004051
I may be seeing this same issue, except in my case, the events duplicate exponentially. A simple bind starts with 1 execution, then 2, 4, 8, 16, 32, 64, ...,...