-
[co19_2/Language/Statements/Continue/async_loops_t09](https://github.com/dart-lang/co19/blob/pre-nnbd/Language/Statements/Continue/async_loops_t09.dart) test crashes on dart2js. Error [log](https://lo…
-
The html library generates some files for dart2js. These files should be read-only.
-
The "loading" message is displayed until the "main" function of the test returns, and if it returns a Future then it waits until that Future completes.
If for some reason the test returns a Future …
-
When executing calc/report it assumes to run an stand-alone VM
...error message:
The built-in library 'dart:html' is not available on the stand-alone VM.
'package:lightning/lightning.dart': error: li…
-
The current semantics of `exp?.x` are described in terms of evaluating this:
``` dart
((a) => a == null ? null : a.x)(exp)
```
Because static fields cannot be read as instance members, this implies …
-
Question for @gbracha and @stereotype441
The proposal says that the semantics of `a ??= b` are the same as:
``` dart
a = a ?? b
```
This means, `a` will be assigned it's own value when it's not n…
-
There's `--allow-warnings-in-packages` and `--allow-errors-in-packages` to only show warnings of certain packages. This is useful for meta-packages like Flutter that only want to show warnings of the …
-
I am attempting to pre-compile platform kernels with the flutter web engine, see https://github.com/flutter/flutter/issues/99161
After building the platform dill files in the engine, when attemptin…
-
I received this error:
Error: XMLHttpRequest error.
C:/b/s/w/ir/cache/builder/src/out/host_debug/dart-sdk/lib/_internal/js_dev_runtime/patch/core_patch.dart 906:28 get current
pa…
-
Sometimes, the table dispatch transformation encounters instance calls for which no targets exist in the program. This happens when the TFA tree shaker has deemed all of those targets unreachable but …