Anna Gringauze

Results 100 issues of Anna Gringauze

A number of users of GSL asked for no-exception mode of GSL. I've added support to GSL that compiles and runs with no exceptions and terminates where exceptions are supposed...

The following code runs successfully on VM and Chrome (if compiled with DDC), but fails on dart pad with a runtime error (or in chrome when compiled with dart2js): ```dart...

web-dart2js
type-bug
area-web

See the generalized description of the issue in https://github.com/dart-lang/sdk/issues/49582. The actual error happened after migration of dwds to null safety. The culprit was `DwdsVmClient` passing a sink from `StreamController` to...

area-vm
pkg-vm-service

I tried to write a test for properly handling the `--enable-experiment` option in build daemon and discovered that warnings are not emitted from the compiler. Same for build runner. See:...

The following issue https://github.com/dart-lang/sdk/issues/43309, after it is resolved, will need some code modifications in build_web_compilers - removing fixupMetadata code and possibly adding stripping of the multiroot start from uri's inside...

See user's output of running webdev in https://github.com/dart-lang/webdev/issues/1520 Looks like the `_logError` currently always prints error messages to the console, even if the current error zone is different from the...

`serveRequests` does not always wrap listening to http requests in a `runZoneGuarded` wrap. This leads to hard to debug async exceptions later if something up its call chain adds its...

cla: yes

`serveRequests` does not always wrap listening to http requests in a `runZoneGuarded` wrap: https://github.com/dart-lang/shelf/blob/6e38575985a8094f4ac172228a6711196d9ae91e/lib/shelf_io.dart#L73 https://github.com/dart-lang/shelf/blob/6e38575985a8094f4ac172228a6711196d9ae91e/lib/src/util.dart#L16 This leads to hard to debug async exceptions later if something up its call chain...

Dart debug extension build skips generating `background.js` file when the library `package:dwds/src/utilities/batched_stream.dart` (https://github.com/dart-lang/webdev/blob/b6439072d118b740fbc2d0e5af4e10952642d864/dwds/lib/src/utilities/batched_stream.dart#L9) is used by the dart extension and unrelated dwds code. Note: the build was working fine until...

area-build

Original issue in Flutter: https://github.com/flutter/flutter/issues/101647 Rare issue seen in production on Flutter web when calling myStreamSubscription.cancel() in StatefulWidget dispose(). Appears to be a race condition and in release mode only....

web-libraries
area-web