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

Unified Diff: tools/dom/scripts/htmleventgenerator.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/htmldartgenerator.py ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/dom/scripts/htmleventgenerator.py
diff --git a/tools/dom/scripts/htmleventgenerator.py b/tools/dom/scripts/htmleventgenerator.py
index 4c6966c297c9c715fdb81721793d4d3c85c66b8d..af0f0453db022bde3f2a2d64fb5c676d53b2edaa 100644
--- a/tools/dom/scripts/htmleventgenerator.py
+++ b/tools/dom/scripts/htmleventgenerator.py
@@ -476,9 +476,9 @@ class HtmlEventGenerator(object):
template_file = 'impl_%s.darttemplate' % events_class_name
template = (self._template_loader.TryLoad(template_file) or
'\n'
- '/// @docsEditable true\n'
+ '@DocsEditable\n'
'class $CLASSNAME extends $SUPER {\n'
- ' /// @docsEditable true\n'
+ ' @DocsEditable\n'
' $CLASSNAME(EventTarget _ptr) : super(_ptr);\n'
'$!MEMBERS}\n')
@@ -505,7 +505,7 @@ class HtmlEventGenerator(object):
if not full_event_name in custom_events:
implementation_events_members.Emit(
"\n"
- " /// @docsEditable true\n"
+ " @DocsEditable\n"
" EventListenerList get $NAME => this['$DOM_NAME'];\n",
NAME=html_name,
DOM_NAME=dom_name)
« no previous file with comments | « tools/dom/scripts/htmldartgenerator.py ('k') | tools/dom/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698