-
Notifications
You must be signed in to change notification settings - Fork 3
Conversation
Note that the translation table was hand-written, so isn't guaranteed to be typo or copy/paste errors free. |
@@ -6,8 +6,11 @@ environment: | |||
sdk: '>=1.20.1 <2.0.0' | |||
|
|||
dependencies: | |||
analysis_server_lib: ^0.1.3 |
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.
If this is where the code to interface with the server lives, then we should unify it with 'analysis_server_client'.
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.
Sounds good. This is at least a library that I'm familiar with, which is why I used it here.
Test it on pkg:test ?
…On Wed, Mar 28, 2018 at 6:19 AM Brian Wilkerson ***@***.***> wrote:
***@***.**** approved this pull request.
------------------------------
In pubspec.yaml
<#5 (comment)>:
> @@ -6,8 +6,11 @@ environment:
sdk: '>=1.20.1 <2.0.0'
dependencies:
+ analysis_server_lib: ^0.1.3
If this is where the code to interface with the server lives, then we
should unify it with 'analysis_server_client'.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#5 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AABCiqBsWKWJtpgccojgm3yb1-LbEQIAks5ti438gaJpZM4S-GKO>
.
|
I updated the travis script to run the unit tests. |
Awesome. Try a dry-run on pkg:test? It covers about everything....
…On Wed, Mar 28, 2018 at 8:28 AM Devon Carew ***@***.***> wrote:
Test it on pkg:test ?
I updated the travis script to run the unit tests.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#5 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AABCivi7L9BYfYIczF1tEY_duFNdYKHkks5ti6wwgaJpZM4S-GKO>
.
|
Ah, I misunderstood. I've tried it on a few projects - will try on package:test as well. |
I just did. All good except for one collision with a local var named Good job! |
|
The V1 implementation of an API migration tool. The uses the analysis server to location uses of deprecated symbols in user code, and matches those uses up with known renamed Dart1 => Dart2 constants.
A likely improved future version will instead get information from a more toolable
@deprecated
annotation, and apply analysis server quick fixes. This will be bot more automatic and more precise.@bwilkerson @kevmoo @scheglov