Daco Harkes
Daco Harkes
Would it be possible to have more frequent dev builds? Currently have a dev tag every 4 hours if I'm not mistaken. But a dev build only goes out 2...
Many functions with buffers take a `void*`, for example https://en.cppreference.com/w/c/io/fread. However, using a `Uint8List` and `.address` yields a `Pointer`. It would be useful to be able to pass `uint8list.address.cast()`. That...
Right now we're disallowing inline arrays of length 0. I believe when I added inline arrays, I read that length 0 is undefined behavior, so I disallowed length 0. >...
Stop running link hooks in debug mode. Rationale: link hooks only get access to tree-shaking info in release builds, so they can't do anything meaningful in debug builds. Debug builds...
We use the following configuration for GitHub actions to collect coverage. ```yaml - name: Install coverage run: dart pub global activate coverage - name: Collect coverage run: dart pub global...
I've noticed a new feature on GitHub: "packages" Integrating this feature with pub likely requires some collaboration with GitHub itself, as there is no pub registry currently: https://docs.github.com/en/packages/working-with-a-github-packages-registry More reading:...
We should change `dart pub global` to use AOT instead of JIT. Also, we should not let `pub` need to worry about how dart is compiled and run, `dart` should...
While reviewing https://github.com/dart-lang/native/pull/1434/: ``` 00:03 +13 -1: test/native_objc_test/automated_ref_count_test.dart: Automatic reference counting assign properties ref count correctly [E] Expected: Actual: ``` After rerunning the test passed. cc @liamappelbe
Dynamic libraries can try to load other dynamic libraries when they are dlopened. For this case, the `build.dart` needs to add the transitive closure of dynamic libraries as assets. When...
I suspect that the `test_jnigen` failures are unrelated to my changes since the same tests pass on macOS and Windows: ``` Picked up JAVA_TOOL_OPTIONS: -Dfile.encoding=UTF8 Note: javadoc: Loading source file...