Skip to content
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

Analyzer: Implement missing methods and new functions quick fix #30759

Closed
matanlurey opened this issue Sep 15, 2017 · 1 comment
Closed

Analyzer: Implement missing methods and new functions quick fix #30759

matanlurey opened this issue Sep 15, 2017 · 1 comment
Assignees
Labels
area-analyzer Use area-analyzer for Dart analyzer issues, including the analysis server and code completion. devexp-server Issues related to some aspect of the analysis server P2 A bug or feature request we're likely to work on type-bug Incorrect behavior (everything from a crash to more subtle misbehavior)

Comments

@matanlurey
Copy link
Contributor

$ dart --version
> Dart VM version: 1.25.0-dev.16.4 (Wed Sep 13 01:47:12 2017) on "macos_x64"

The following:

abstract class GraphVisitor {
  Future<T> visit<T>(T Function<T>() fn);
}

class MyVisitor implements GraphVisitor {}

... will auto-implement the missing GraphVisitor methods incorrectly:

class MyVisitor implements GraphVisitor {
  Future<T> visit<T>(Function fn) {
    // TODO: implement visit
  }
}
@bwilkerson bwilkerson added devexp-server Issues related to some aspect of the analysis server area-analyzer Use area-analyzer for Dart analyzer issues, including the analysis server and code completion. P2 A bug or feature request we're likely to work on type-bug Incorrect behavior (everything from a crash to more subtle misbehavior) labels Sep 15, 2017
@devoncarew devoncarew changed the title Analyzer: Implement missing methods and new functions Analyzer: Implement missing methods and new functions quick fix Oct 3, 2017
@bwilkerson bwilkerson self-assigned this Feb 7, 2018
@bwilkerson
Copy link
Member

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area-analyzer Use area-analyzer for Dart analyzer issues, including the analysis server and code completion. devexp-server Issues related to some aspect of the analysis server P2 A bug or feature request we're likely to work on type-bug Incorrect behavior (everything from a crash to more subtle misbehavior)
Projects
None yet
Development

No branches or pull requests

2 participants