We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The name … is shown, but not used
1 parent 60727c4 commit 01e6b8cCopy full SHA for 01e6b8c
1 file changed
tools/build/dartanalyzer.js
@@ -199,6 +199,12 @@ _AnalyzerOutputLine.prototype = {
199
if (this.isHint && this.sourcePath.match(/generated/i)) {
200
return true;
201
}
202
+
203
+ if (this.errorCode.match(/UNUSED_SHOWN_NAME/i)) {
204
+ // TODO: Narrow this ignore down to test code only.
205
+ // See https://github.com/angular/angular/issues/8044
206
+ return true;
207
+ }
208
return false;
209
},
210
0 commit comments