Liam Appelbe
Liam Appelbe
I'm trying to make my trap handling code show a user friendly stack trace. I'd at least like to show which functions are hit in the trace. Looking at the...
We don't currently have the infrastructure to choose an alignment for a stub, but it would be useful in the case of FfiCallbackTrampoline. We have to duplicate this stub using...
This is a tracking bug for the Platform Isolate feature. The design details are still being worked out, but the general idea is to provide a way of using FFI...
We have a bunch of version checks for the VmService version, and a bunch of checks that are skipped for old SDKs. Some of these are very old, and can...
See https://github.com/linux-test-project/lcov/issues/221
Add a command line flag that works like `// coverage:ignore-file`. It should also be able to handle globs, so that users can ignore all generated files like `*.g.dart`.
Trying to add function and branch coverage to flutter (https://github.com/flutter/flutter/issues/108313), but function coverage is unusably slow, due to the large number of source files that need to be scanned in...
test/chrome_test.dart fails on windows CI, and I haven't been able to reproduce it locally. Skipping it for now. https://github.com/dart-lang/coverage/runs/6459692741?check_suite_focus=true
Follow up from #382. We should consider bumping the minimum SDK version to 2.17, perhaps when bumping the coverage version to 3. This would let us remove the `--packages` flag,...
`CompositeFFT` is built on a series of lower level FFTs that are evaluated in sequence. But the evaluation order doesn't matter. So what happens if we change the order? Is...