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

Unified Diff: Source/bindings/scripts/idl_validator.py

Issue 434133002: Support WebIDL's ExtendedAttributeIdentList in the Blink parser (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: rebase Created 6 years, 4 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 | « Source/bindings/scripts/generate_global_constructors.py ('k') | Source/bindings/scripts/utilities.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/idl_validator.py
diff --git a/Source/bindings/scripts/idl_validator.py b/Source/bindings/scripts/idl_validator.py
index e527442cab787ec239c286985442b56a2a3035c4..29ccd7d55c97664502c949b934b2ddc11748be76 100644
--- a/Source/bindings/scripts/idl_validator.py
+++ b/Source/bindings/scripts/idl_validator.py
@@ -78,7 +78,7 @@ class IDLExtendedAttributeValidator(object):
if values_string is None:
values = set([None])
else:
- values = set(re.split('[|&]', values_string))
+ values = set(re.split('[|,]', values_string))
invalid_values = values - valid_values
if invalid_values:
invalid_value = invalid_values.pop()
« no previous file with comments | « Source/bindings/scripts/generate_global_constructors.py ('k') | Source/bindings/scripts/utilities.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698