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

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

Issue 11970019: Change /// @docsEditable to @DocsEditable annotation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Template removal stuff. Created 7 years, 11 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
« no previous file with comments | « tools/dom/scripts/htmleventgenerator.py ('k') | tools/dom/templates/dart2js_impl.darttemplate » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/scripts/systemhtml.py
diff --git a/tools/dom/scripts/systemhtml.py b/tools/dom/scripts/systemhtml.py
index 231a70ed01ce6a0af378b6c718d23fa7978aa114..bedd2f0884ca46750ef9b1cf0e9f3cd1a9ea18c2 100644
--- a/tools/dom/scripts/systemhtml.py
+++ b/tools/dom/scripts/systemhtml.py
@@ -651,7 +651,6 @@ class Dart2JSBackend(HtmlDartGenerator):
input_type = self._NarrowInputType(attribute.type.id)
annotations = self._Annotations(attribute.type.id, attribute.id)
rename = self._RenamingAnnotation(attribute.id, html_name)
- self.EmitAttributeDocumentation(attribute)
if not read_only:
self._members_emitter.Emit(
'\n $RENAME$ANNOTATIONS$TYPE $NAME;'
@@ -687,7 +686,6 @@ class Dart2JSBackend(HtmlDartGenerator):
TYPE=self.SecureOutputType(attribute.type.id))
def _AddRenamingGetter(self, attr, html_name):
- self.EmitAttributeDocumentation(attr)
conversion = self._OutputConversion(attr.type.id, attr.id)
if conversion:
@@ -704,7 +702,6 @@ class Dart2JSBackend(HtmlDartGenerator):
NATIVE_TYPE=native_type)
def _AddRenamingSetter(self, attr, html_name):
- self.EmitAttributeDocumentation(attr)
conversion = self._InputConversion(attr.type.id, attr.id)
if conversion:
@@ -759,8 +756,6 @@ class Dart2JSBackend(HtmlDartGenerator):
if self._HasCustomImplementation(info.name):
return
- self.EmitOperationDocumentation(info)
-
if IsPureInterface(self._interface.id):
self._AddInterfaceOperation(info, html_name)
elif any(self._OperationRequiresConversions(op) for op in info.overloads):
« no previous file with comments | « tools/dom/scripts/htmleventgenerator.py ('k') | tools/dom/templates/dart2js_impl.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698