Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(70)

Unified Diff: tools/dom/scripts/htmldartgenerator.py

Issue 1987073002: Strip unused functionality from dart:html and fix strong mode errors. Switch from blacklisting pure… (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/dom/scripts/htmldartgenerator.py
diff --git a/tools/dom/scripts/htmldartgenerator.py b/tools/dom/scripts/htmldartgenerator.py
index c66ce5b15b76ff982c66a05aa2bcde90bac2aaba..8397b8f74e48e8c2ee4b1ec72c617f2175814deb 100644
--- a/tools/dom/scripts/htmldartgenerator.py
+++ b/tools/dom/scripts/htmldartgenerator.py
@@ -177,7 +177,7 @@ class HtmlDartGenerator(object):
# Never remove operations that are added as a result of an implements they
# are pure interfaces (mixins to this interface).
- if (IsPureInterface(parent_name)):
+ if (IsPureInterface(parent_name, self._database)):
return
for operation in parent.operations:

Powered by Google App Engine
This is Rietveld 408576698