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

Unified Diff: dart/tools/dom/scripts/generator.py

Issue 644913002: Version 1.7.1 (Closed) Base URL: http://dart.googlecode.com/svn/branches/1.7/
Patch Set: Created 6 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
« no previous file with comments | « dart/tools/dom/scripts/dartgenerator.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: dart/tools/dom/scripts/generator.py
===================================================================
--- dart/tools/dom/scripts/generator.py (revision 40988)
+++ dart/tools/dom/scripts/generator.py (working copy)
@@ -1273,7 +1273,7 @@
return self.TypeInfo(type_name).dart_type()
def _TypeInfo(self, type_name):
- match = re.match(r'(?:sequence<(\w+)>|(\w+)\[\])$', type_name)
+ match = re.match(r'(?:sequence<([\w ]+)>|(\w+)\[\])$', type_name)
if match:
type_data = TypeData('Sequence')
item_info = self.TypeInfo(match.group(1) or match.group(2))
« no previous file with comments | « dart/tools/dom/scripts/dartgenerator.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698