From bc8c194665c5cccf1dd6c54067c8a78f5a2afe95 Mon Sep 17 00:00:00 2001 From: vsavkin Date: Thu, 8 Oct 2015 11:12:43 -0700 Subject: [PATCH] temporary ignore warnings about unused unimplemented --- tools/build/dartanalyzer.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/build/dartanalyzer.js b/tools/build/dartanalyzer.js index 990c663a6a..9384330d84 100644 --- a/tools/build/dartanalyzer.js +++ b/tools/build/dartanalyzer.js @@ -177,6 +177,10 @@ _AnalyzerOutputLine.prototype = { if (this.sourcePath.match(/_analyzer\.dart/)) { return true; } + // TODO remove it once ts2dart propertly generates abstract getters + if (this.errorMsg.match(/unimplemented/)) { + return true; + } } if (this.errorCode.match(/DEPRECATED_MEMBER_USE/i)) {