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

Unified Diff: client/dom/scripts/idlrenderer.py

Issue 9051008: Parse 'static' qualifier in IDL. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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 | « client/dom/scripts/idlparser.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/scripts/idlrenderer.py
diff --git a/client/dom/scripts/idlrenderer.py b/client/dom/scripts/idlrenderer.py
index fcc8f14d539cb0dc90018f13d5d76183b766dae4..2dafc28c80c421a04682cc5fadc1bf2b9391455b 100755
--- a/client/dom/scripts/idlrenderer.py
+++ b/client/dom/scripts/idlrenderer.py
@@ -130,6 +130,8 @@ def render(idl_node, indent_str=' '):
elif isinstance(node, IDLOperation):
w(node.annotations)
w(node.ext_attrs)
+ if node.is_static:
+ w('static ')
if node.specials:
w(node.specials, ' ')
w(' ')
« no previous file with comments | « client/dom/scripts/idlparser.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698