Michael R Fairhurst
Michael R Fairhurst
Found this while fuzzing the angular analyzer. ```
I'm parsing this with quirks = true as document, and then trying to find the attributeSpans when the attributes map isn't empty. This is the html: ```
Hey, this just cost me a ton of time. in domain-state.js, it _looks_ like someone put in all the work required to get hot reloading working (the code is certainly...
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...
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),...
I've noticed a big cause of latency is giant directive lists: ``` directives: [ OMEGA_LIST_OF_ZILLIONS_OF_DIRECTIVES, ... ], template: "... ``` The cost of analyzing each directive's source to "link" them...
- [ ] pipe names after `|` - [ ] pipe arguments after `| name:`
```dart @Pipe class MyPipe { A transform(B input, [C extra, D args, E go, F here]); } ``` ```html {{foo | bar: extra: args: go: here}} ``` These should also...
Given ``` ``` and you are autocompleting: ```