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

Unified Diff: ppapi/generators/idl_parser.py

Issue 98343005: Pepper: More IDL generator cleanup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix for json_schema_compiler Created 7 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 | « ppapi/generators/idl_node.py ('k') | ppapi/generators/idl_tests.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/generators/idl_parser.py
diff --git a/ppapi/generators/idl_parser.py b/ppapi/generators/idl_parser.py
index 6f0ea12436697fc419e75faa3a71dfa687a3a9ac..74805643248cecc9c8c3ccdbf31efd11afafe067 100755
--- a/ppapi/generators/idl_parser.py
+++ b/ppapi/generators/idl_parser.py
@@ -976,7 +976,7 @@ class IDLParser(IDLLexer):
def FlattenTree(node):
add_self = False
out = []
- for child in node.children:
+ for child in node.GetChildren():
if child.IsA('Comment'):
add_self = True
else:
« no previous file with comments | « ppapi/generators/idl_node.py ('k') | ppapi/generators/idl_tests.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698