Liam Appelbe
Liam Appelbe
Looks like the wrongCoverage method is missing its source positions, but only when run through `package:test`. I also tried running it through `Isolate.spawnUri`, and it is covered correctly. @jakemac53 How...
I've managed to reproduce the bug without going through `dart test`. When I compile the test to a dill using `FrontendServerClient`, it reproduces the bug. When I compile the test...
@nielsenko I'm having trouble running these tests. From the test errors, it seems like I have to build librealm_dart.so, but I'm getting a cmake error (`Error: could not load cache`)...
I was able to repro. I'm still investigating. Nothing to report yet
Traced the crash to an assert (kernel_translation_helper.cc::CheckStaticLookup) that has a TODO pointing to this bug: https://github.com/dart-lang/sdk/issues/37517
@rmacnak-google The conditions you mentioned for triggering #37517 have to do with reloading and mirrors. In this case the crash is happening when gathering coverage for const constructors. Is this...
The class it's trying to look up is `MetadataPersistenceMode` in `package:realm_dart/src/app.dart`: ```dart /// Specify if and how to persists user objects. /// {@category Application} enum MetadataPersistenceMode { /// Persist [User]...
> I do think we should make the failure modes better. That will require a language specification change, but it might be worth it. In this case, and almost _any_...
Seems to be flaky on github CI, and I can't reproduce it at all locally.
@gaaclarke Sorry for the slow reply, I missed your message. Thanks for taking a look. Why would I need to compile the wasm code to a dylib to use the...