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

Unified Diff: lib/html/scripts/dartgenerator.py

Issue 11026039: Refactor idl to dart renaming logic for interfaces. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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
Index: lib/html/scripts/dartgenerator.py
diff --git a/lib/html/scripts/dartgenerator.py b/lib/html/scripts/dartgenerator.py
index ec22a5b946578f90da72f03536facc9f5612dca9..fe08933219aed07075cdcbd5258fd3508d137c24 100755
--- a/lib/html/scripts/dartgenerator.py
+++ b/lib/html/scripts/dartgenerator.py
@@ -274,7 +274,7 @@ class DartGenerator(object):
interface.parents.append(idlnode.IDLParentInterface(ast))
def AddMissingArguments(self, database):
- ARG = idlnode.IDLArgument([('Type', ('ScopedName', 'Object')), ('Id', 'arg')])
+ ARG = idlnode.IDLArgument([('Type', ('ScopedName', 'object')), ('Id', 'arg')])
for interface in database.GetInterfaces():
for operation in interface.operations:
if operation.ext_attrs.get('CallWith') == 'ScriptArguments|CallStack':

Powered by Google App Engine
This is Rietveld 408576698