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

Unified Diff: client/dom/scripts/idlparser.py

Issue 9466036: Fix parsing of DOMString[] in IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 | « client/dom/scripts/idlnode.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/scripts/idlparser.py
diff --git a/client/dom/scripts/idlparser.py b/client/dom/scripts/idlparser.py
index 5abb4334541c088d38c9ea06e3b7587f5873a72a..643285695766ed02b17adbaa2ad1c3d60df63d08 100755
--- a/client/dom/scripts/idlparser.py
+++ b/client/dom/scripts/idlparser.py
@@ -288,7 +288,7 @@ class IDLParser(object):
def _NullableType():
return [OR(_IntegerType, BooleanType, OctetType, FloatType,
- DoubleType, SequenceType, DOMStringListType, ScopedName),
+ DoubleType, SequenceType, DOMStringArrayType, ScopedName),
MAYBE(Nullable)]
def Nullable():
@@ -350,7 +350,7 @@ class IDLParser(object):
def ScopedName():
return re.compile(r'[\w\_\:\.\<\>]+')
- def DOMStringListType():
+ def DOMStringArrayType():
return 'DOMString[]'
# Extended Attributes:
« no previous file with comments | « client/dom/scripts/idlnode.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698