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

Side by Side Diff: ppapi/generators/idl_node.py

Issue 9168014: Fix incorrectly resolved conflict, and add error message for missing sources. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ppapi/generators/idl_generator.py ('k') | ppapi/generators/idl_parser.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/python 1 #!/usr/bin/env python
2 #
3 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file. 4 # found in the LICENSE file.
6 5
7 """Nodes for PPAPI IDL AST""" 6 """Nodes for PPAPI IDL AST"""
8 7
9 # 8 #
10 # IDL Node 9 # IDL Node
11 # 10 #
12 # IDL Node defines the IDLAttribute and IDLNode objects which are constructed 11 # IDL Node defines the IDLAttribute and IDLNode objects which are constructed
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
384 errors += ChildTest() 383 errors += ChildTest()
385 384
386 if errors: 385 if errors:
387 ErrOut.Log('IDLNode failed with %d errors.' % errors) 386 ErrOut.Log('IDLNode failed with %d errors.' % errors)
388 return -1 387 return -1
389 return 0 388 return 0
390 389
391 if __name__ == '__main__': 390 if __name__ == '__main__':
392 sys.exit(Main()) 391 sys.exit(Main())
393 392
OLDNEW
« no previous file with comments | « ppapi/generators/idl_generator.py ('k') | ppapi/generators/idl_parser.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698