Skip to content

Quick fix "Use imported library ... with prefix ..." should update show combinator #54786

Closed
@stereotype441

Description

@stereotype441

Reproduced at 3636c8a using VSCode.

Start with the following code:

import 'dart:math' as math show log; // (1)

main() {
  print(sqrt2); // (2)
}

This code has a compile-time error at (2) (undefined_identifier).

Trigger quick fixes at that point, and select the fix "Use imported library 'dart:math' with prefix 'math'".

This causes line (2) to change to:

  print(math.sqrt2); // (2)

Which, unfortunately, still has a compile-time error, since the import at (1) doesn't show sqrt2.

It would be nice if the quick fix also updated the import's show combinator.

Metadata

Metadata

Assignees

No one assigned

    Labels

    P3A lower priority bug or feature requestdevexp-quick-fixIssues with analysis server (quick) fixeslegacy-area-analyzerUse area-devexp instead.type-enhancementA request for a change that isn't a bug

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions