Michael R Fairhurst
Michael R Fairhurst
In playground/outline_component.html I put in the line `````` and I get the very confusing error of WARNING: Attribute value expression (of type List) is not assignable to component input (of...
In the branch with fix for #84, the type checks are working properly for no strong mode, but the errors are not fully clear/resolved. ``` MyComponent { @Input A stringBound;...
If you create a generic component ``` @Component(...) class GenericComp { T getter; } ``` and you use it in a template, capturing it as a variable ``` ... {{genericComp.getter.length}}...
Requires a semi-coordinated effort with some open-source code with no maintainer yet, a few outstanding bugs, etc. Perhaps we can share the instructions with a disclaimer, or maybe we have...
Opening a TODO assuming that https://github.com/dart-lang/angular_ast/pull/60 gets merged. This PR adds support for `` and ``. However, we may want to either test that `` is allowed, or specifically reject...
It looked like #396 was an easy fix waiting to be picked up. Hoping this PR is an easy review and helpful. Let me know if it seems better to...
This could be part of void_checks or unawaited_futures. Given, the following function which takes a void function: ``` void foo(void Function() bar) { ... } ``` and the following call...
## Description The presence of -Wno-foo should not mark the compilation compliant with A1-1-2, nor should the presence of -Wfoo=0. Easily check for all -Wfoo=bar flags, that foo is not...
## Description Add a script `validate-amendments-csv.py` that checks each rule in `amendments.csv` for the following: - "Yes"/"No" columns contain "Yes" or "No" - The rule id references an existing rule...
## Description Gcc may be compiled to auto include warnings such as -Wformat. However, passing in `-w` will suppress the enabled format warnings. The previous query would not raise an...