Commit adf3b90d authored by Devon Carew's avatar Devon Carew Committed by GitHub

check installed IDES for webstorm (#8422)

parent 932f7cef
...@@ -258,6 +258,7 @@ abstract class IntelliJValidator extends DoctorValidator { ...@@ -258,6 +258,7 @@ abstract class IntelliJValidator extends DoctorValidator {
static final Map<String, String> _idToTitle = <String, String>{ static final Map<String, String> _idToTitle = <String, String>{
'IntelliJIdea' : 'IntelliJ IDEA Ultimate Edition', 'IntelliJIdea' : 'IntelliJ IDEA Ultimate Edition',
'IdeaIC' : 'IntelliJ IDEA Community Edition', 'IdeaIC' : 'IntelliJ IDEA Community Edition',
'WebStorm': 'WebStorm',
}; };
static Iterable<DoctorValidator> get installedValidators { static Iterable<DoctorValidator> get installedValidators {
...@@ -397,6 +398,7 @@ class IntelliJValidatorOnMac extends IntelliJValidator { ...@@ -397,6 +398,7 @@ class IntelliJValidatorOnMac extends IntelliJValidator {
'IntelliJ IDEA.app' : 'IntelliJIdea', 'IntelliJ IDEA.app' : 'IntelliJIdea',
'IntelliJ IDEA Ultimate.app' : 'IntelliJIdea', 'IntelliJ IDEA Ultimate.app' : 'IntelliJIdea',
'IntelliJ IDEA CE.app' : 'IdeaIC', 'IntelliJ IDEA CE.app' : 'IdeaIC',
'WebStorm.app': 'WebStorm',
}; };
static Iterable<DoctorValidator> get installed { static Iterable<DoctorValidator> get installed {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment