Derek Xu
Derek Xu
The test ``` standalone/regress_41329_absolute_test (RuntimeError -> Timeout, expected Pass) ``` is failing on configurations ``` vm-kernel-nnbd-win-debug-x64 vm-kernel-win-debug-ia32 vm-kernel-win-debug-x64 vm-kernel-win-debug-x64c vm-kernel-msvc-windows ``` The test failure logs say "diagnostics: win_sdk_path not found",...
The performance of `flutter test --experimental-faster-testing` is currently not ideal when running a large number of test files because the Lightweight Engines spawned when using this strategy get blocked from...
``` // For a TypeScript function like: declare class X { /** * Prints "it's a number" if `x` is a number or "it's a string" if `x` is a...
``` declare interface XType { a: string; b: number; c(): boolean; } declare type X = { prototype: XType, new(a: string, b: number): XType } declare type Y = X;...
Certain identifiers are acceptable in JavaScript but not in Dart. One common case where these identifiers get used is in Object properties. obj[string] can be used to give an object...
Separating this out from https://github.com/dart-lang/webdev/issues/2338 so it can be closed. The following is a quote of [a comment](https://github.com/dart-lang/webdev/issues/2338#issuecomment-2302632635) on that issue that explains which new JS interop libraries replace which...
The following test cases are failing: ``` build should allow passing extra arguments to build_runner should build with valid configuration DDC should build with valid configuration dart2js should build with...
These tests will be skipped until the necessary changes are made to DDC to get these tests passing again.
The tests ``` pkg/dds/test/dap/integration/debug_exceptions_test RuntimeError (expected Pass) ``` are failing on configurations ``` unittest-asserts-release-win-arm64 ``` https://dart-ci.appspot.com/log/pkg-win-release-arm64/unittest-asserts-release-win-arm64/1503/pkg/dds/test/dap/integration/debug_exceptions_test https://ci.chromium.org/ui/p/dart/builders/ci.sandbox/pkg-win-release-arm64/1503/overview I see two errors in the logs. The first is a `SocketException`: ```...
The APIs for managing Service ID zones have been released in [`package:vm_service 14.3.0`](https://pub.dev/packages/vm_service/versions/14.3.0). These APIs can be used to free object IDs when they are no longer needed, to ensure...