-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Completion error in GenClasses.dart #207
Comments
Removed Priority-High label. |
Added Fixed label. |
nex3
pushed a commit
that referenced
this issue
Aug 31, 2016
fixes #207, checking for boolean conversions R=leafp@google.com, vsm@google.com Review URL: https://codereview.chromium.org/1147143007
This was referenced Oct 29, 2020
copybara-service bot
pushed a commit
that referenced
this issue
Jan 2, 2024
…ystem, json_rpc_2 Revisions updated by `dart tools/rev_sdk_deps.dart`. benchmark_harness (https://github.com/dart-lang/benchmark_harness/compare/e59f675..a62e416): a62e416 2023-12-14 Kevin Moore Require Dart 3.2, pub dependencies, cleanup analysis_options (#97) cli_util (https://github.com/dart-lang/cli_util/compare/500dffa..e5b38ac): e5b38ac 2024-01-01 dependabot[bot] Bump actions/stale from 8.0.0 to 9.0.0 (#96) 91540ca 2023-12-20 Kevin Moore blast_repo fixes (#95) 1fd87c1 2023-12-15 Devon Carew require dart 3.0; rev to 0.4.1 in prep for publishing (#93) convert (https://github.com/dart-lang/convert/compare/3503170..f8a72d6): f8a72d6 2024-01-01 dependabot[bot] Bump actions/stale from 8.0.0 to 9.0.0 (#98) e6b0558 2023-12-18 Kevin Moore Enable and fix new lints (#97) 39e5ca6 2023-12-18 Kevin Moore blast_repo fixes (#96) crypto (https://github.com/dart-lang/crypto/compare/f3e64d2..63e9a90): 63e9a90 2024-01-01 dependabot[bot] Bump actions/stale from 8.0.0 to 9.0.0 (#160) f2c79ed 2023-12-19 Kevin Moore blast_repo fixes (#157) csslib (https://github.com/dart-lang/csslib/compare/17346e5..1ad2d1e): 1ad2d1e 2024-01-01 dependabot[bot] Bump actions/stale from 8.0.0 to 9.0.0 (#195) 1325d75 2023-12-18 Kevin Moore blast_repo fixes (#193) ecosystem (https://github.com/dart-lang/ecosystem/compare/ce707fb..dc44e82): dc44e82 2024-01-02 Moritz Get needed version from API tool in health check (#213) 55251b1 2024-01-02 Moritz De-async health checks (#208) 2587855 2024-01-01 dependabot[bot] Bump peter-evans/create-or-update-comment (#211) 0136c56 2024-01-01 dependabot[bot] Bump actions/upload-artifact from 3.1.3 to 4.0.0 (#210) 82f4b77 2024-01-01 dependabot[bot] Bump actions/stale from 8.0.0 to 9.0.0 (#212) 5e12e96 2024-01-01 dependabot[bot] Bump actions/labeler from 4.3.0 to 5.0.0 (#209) 5d594f4 2023-12-14 Kevin Moore Require/support latest pkg:http (#207) b8679da 2023-12-07 Devon Carew normalize sort order of package listing (#205) json_rpc_2 (https://github.com/dart-lang/json_rpc_2/compare/460545c..ac1fabd): ac1fabd 2024-01-01 dependabot[bot] Bump actions/stale from 8.0.0 to 9.0.0 (#108) Change-Id: I83fa7042ac1970ae792110093bdcf8c0ec779fda Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/344260 Auto-Submit: Devon Carew <devoncarew@google.com> Commit-Queue: Konstantin Shcheglov <scheglov@google.com> Reviewed-by: Konstantin Shcheglov <scheglov@google.com>
This issue was closed.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Completion in a for statement should not suggest types in the increment expression.
for (int i = 0; i < fileCount; i++)
With the cursor between the 'i' and the '+' completion suggests 'i' and 'int' but should only suggest 'i'.
The text was updated successfully, but these errors were encountered: