-
Notifications
You must be signed in to change notification settings - Fork 340
Use instance fields #44
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
Conversation
devoncarew
commented
Aug 7, 2016
- move module globals to fields
- tweak no sdk installed error message
- prefer double quotes
| constructor(analyzer: Analyzer) { | ||
| statusBarItem = window.createStatusBarItem(); | ||
| statusBarItem.text = 'Analyzing…'; | ||
| super(() => this.statusBarItem.dispose()); |
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.
Heh; I put this further down thinking the reference wouldn't exist till I'd created it but of course it's not called untill later so that make no sense!
|
I think it's worth tweaking the message to not suggest the path needs configuring (if we spent effort making it less work for the user, no point telling them to do the extra work) but otherwise this all looks great 👍 |
|
updated :) ptal |
|
Thanks! :) |