-
Notifications
You must be signed in to change notification settings - Fork 211
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
add resolve(id)
to BuildStep
#25
Conversation
// BSD-style license that can be found in the LICENSE file. | ||
import 'dart:async'; | ||
|
||
import 'package:analyzer/src/generated/ast.dart' show Expression; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use the "visible" import package:analyzer/analyzer.dart
instead
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
updated |
For future reviews, please push a commit with just review changes overtop the original one. You can always merge them before committing. LGTM |
This adds essentially the
code_transformers
package logic directly to this package. It is up in the air still if this is really a good idea or not though ;).cc @munificent @nex3
closes #24