| Index: tools/dom/scripts/generator.py
|
| diff --git a/tools/dom/scripts/generator.py b/tools/dom/scripts/generator.py
|
| index 59c545882a58bdadacc342f5893d859ff5fbd902..04a64556692c54f44fe03ecf9a753439ecd49654 100644
|
| --- a/tools/dom/scripts/generator.py
|
| +++ b/tools/dom/scripts/generator.py
|
| @@ -1273,7 +1273,7 @@ class TypeRegistry(object):
|
| 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))
|
|
|