Slava Egorov

Results 443 comments of Slava Egorov

Looks a like some sort of a bug in the AOT compiler - we are trying to generate a name for some function and that fails likely because something is...

> If you don't mind I can add you to the private repo or send an archive. Sadly this is not an option because unfortunately we can't look at any...

@raspberry-jenshen could you try the following. Checkout `flutter` at commit `b79ee9282c3403197dece9dfeb82a90abe85a5f3`. Run `flutter build apk --release -v` and obtain a crashing `gen_snapshot` command line from the logs which should look...

@alexmarkov you can repro using this but you will need to use product mode and `--trace-precompiler` to trigger the crash. Looks the same - so I did not bother to...

Please don't use breaking-change-request template if you are just making a feature request or filing a bug. This template is used for team specific process.

I think the recommended way to handle this is to use some combination of `show`, `hide` and `as` to avoid the clash. I think changing the name of `dart:developer` `log`...

@stephane-archer it is indeed a breaking change (and the one we are rather unlikely to decide to do), but that does not mean you have to file a breaking change...

(this is most likely some Android specific wonkyness around permissions for external storage)

First two notes about the syntax: - Right associativity of `|>` makes it confusing. All other operators in Dart are left associative. `a * b * c` are `(a *...