Ahmed Ashour
Ahmed Ashour
Thanks all for your feedback. @ramanjitsingh-hub please go ahead, I hope one week is enough to raise a PR. If you want more ideas, we can have an error message...
The issue is still reprodubile. The initial URL should be something like `http://localhost:56422/#/book/3`.
> [`noop_primitive_operations`](https://dart-lang.github.io/linter/lints/noop_primitive_operations.html) might fit this bill already? Indeed, this is it. > ... to expand it to covering additional cases .. I guess yes, why not. The more value added...
I have the same issue and the logs are: ``` C:\use\okuna\okuna-api>docker-compose -f docker-compose-full.yml up Docker Compose is now in the Docker CLI, try `docker compose up` okuna-api_redis_1 is up-to-date okuna-api_db_1...
I can't reproduce with `Dart SDK version: 2.19.0-183.0.dev (dev) (Fri Sep 9 08:47:43 2022 -0700) on "windows_x64"`, please specify which version was used to produce that error. ``` C:\use\agent_dart-1982da6e940ed8edbf5e6b661328d6e2e56625d4>dart fix...
I am having this for some time, and I thought it was only me (after opening #48611). @AlexV525 please update the description with your `flutter doctor -v`. flutter doctor -v...
One of the things I would imagine, that could help speed this up, is to try to look into the request/response in the analysis server [logs](https://intellij-support.jetbrains.com/hc/en-us/community/posts/4407710497682/comments/4407712969618), in order to find...
Not sure if this helps much, but adding `-v` prints: ``` $ dart fix -h -v ... Usage: dart [vm-options] fix [arguments] -h, --help Print this usage information. -n, --dry-run...
`-v` is a global option ``` $ dart ... Global options: -h, --help Print this usage information. -v, --verbose Show additional command output. --version Print the Dart SDK version. --enable-analytics...
For the second case (with additional statements after the `while` loop): ```dart void g(bool c) { do { print(c); return; } while (c); print('2'); } ``` I think it is...