angular_analyzer_plugin
angular_analyzer_plugin copied to clipboard
WORK MOVED TO dart-lang/angular repository
 ```dart String get title => post.title; ```
 ```dart @Directive( selector: '[virtualScroll]', ) class VirtualScrollDirective { bool _active; @Input() set virtualScroll(bool active) { if (active == _active) { return; } _active = active; if (_active) { _restoreState();...
angular_analyzer_plugin doesn't work until you clear Dart Analysis Server cache (.dartServer folder)
IntelliJ IDEA 2019.1.3 or later + corresponding Dart plugin. Dart SDK 2.3.1. Steps to reproduce: - Create a new Dart project (chose AngularDart Web App template). 'Pub get' done automatically....
A number of things not yet working in intelliJ. These are just the ones I remember. Part of this ticket should be identifying more cases - [ ] click from...
No html intellisense for AngularDart Custom Components on Webstorm.
I have fresh Dart installation VM version: 2.1.0-dev.5.0 (Wed Sep 19 19:15:19 2018 +0200) on "windows_x64" IntelliJ  Stagehand 3.1.3 I have created new stagehand project using instructions from https://webdev.dartlang.org/guides/get-started...
Hi there, referring to an [issue](https://youtrack.jetbrains.com/issue/WEB-39034) on youtrack at jetbrains, I'm interested of any roadmap regarding the mentioned feature. It seems that some of the implementation has to be done...
This will be able to suppress IntelliJ inspections in the future. Otherwise intelliJ has no idea whether a tag is understood by the plugin or not.
Seems like the most reasonable option given ``` @Output EventEmitter foo; ... ``` when you click on '$event'' should go to 'Foo' in the definition. For html events (like click),...
Suppose there is a superclass called `MyBaseClass` that doesn't have a Directive/Component meta attached to it. If there is a component class called `MyDerivedClass` which extends `MyBaseClass`, it should be...