Slava Egorov

Results 443 comments of Slava Egorov

We could consider adding `int` to `File`/`Socket` functionality to `dart:ffi` rather than `dart:io` (or yet another library `dart:io_ffi` or something like that). This would, I think, address a concern that...

@krishnatejakanchi you are importing some package that is only going to work on the web (i.e. some of your code is importing `package:js/js.dart` directly or indirectly). Editing `.pub_cache` is wrong...

@krishnatejakanchi unfortunately there is no easy way to find this dependency AFAIK. The simplest approach you could try is just rename `js.dart` in your `.pub-cache` to `js.dart.bak` (yeah, I know...

@johnniwinther I would like to suggest a bunch of improvements for the CFE error messaging (if feasible): * When importing a platform specific library that does not exist on target...

@maks if you have a secondary isolate that secondary isolate likely keeps the isolate group alive which prevents finalisers from running. Which would explain why native finalizers don't fire. We...

> as a view on `int` One interesting consideration here is that `int` will be too wide for 32-bit ARM. We need something like `_int32`, a hidden type which reifies...

(I am not sure about correct `area-*` label for `dart fix`. Let me know if analyzer is the wrong one @srawlins)

It does seem that there is some dependency on IA32 target (e.g. on Windows) and some companies maintaining it as a target outside of Flutter tree, see comments on https://github.com/flutter/flutter/issues/37777...

We have discussed this before, but unfortunately native debugging format does not provide any reasonable means for this, so short of emitting funky names which represent all merged functions we...