Asashour
- Total activity 25
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 9
- Subscriptions 7
-
Created Reference highlighting in Dart
AnsweredI am new to IntelliJ plugin development and trying to fix the issue for https://github.com/dart-lang/sdk/issues/48281 With this case class A { A(int x);}class B extends A { int y; B(super.x) : y... -
Created Dart: rename variable from the server
AnsweredI am trying to make the Dart plugin use the server for renaming a variable, as the IDEA part to fix https://github.com/dart-lang/sdk/issues/47521 The following points are noticed: The plugin doesn... -
Created Dart plugin: tests failing
AnsweredAfter following the Dart plugin instructions, on running the Dart tests with master branch, some tests fail. I also noticed that the plugin won't compile unless "intellij.platform.ide.util.netty"... -
Created Dart: plugin prerequisites
AnsweredI am trying to build the Dart Plugin. In the Prerequisites, multiple plugins are required, however they don't exist Git Integration I18n for Java IntelliLang JUnit Plugin DevKit Properties Suppo... -
Created Dart: getters/setters: show read/write access
I see the "Show read/write access" has not effect, however it should show only getters or setters accordingly. Is this a bug? Sample code and screenshot: class A { int get a => 1; set a(int i) ... -
Edited Dart: analysis server log
AnsweredIs there a possibility to see the communication between the Dart analysis server and the IDE? -
Created Build and run IntelliJ with maven
AnsweredI am able to build and run IntelliJ from source, however on opening a maven project there is an exception below. I guess is it because "plugins/maven/maven36-server-impl' is not built. However, b...