Index: Source/bindings/scripts/idl_types.py |
diff --git a/Source/bindings/scripts/idl_types.py b/Source/bindings/scripts/idl_types.py |
index e7acaef6e95b30b1f1e8c334c93fb7420fd68cb4..e488e33264830157b37294bf42dd24c86ce5ac9d 100644 |
--- a/Source/bindings/scripts/idl_types.py |
+++ b/Source/bindings/scripts/idl_types.py |
@@ -44,6 +44,8 @@ BASIC_TYPES = (PRIMITIVE_TYPES | frozenset([ |
'Date', |
# http://heycam.github.io/webidl/#es-type-mapping |
'void', |
+ # http://encoding.spec.whatwg.org/#type-scalarvaluestring |
+ 'ScalarValueString', |
])) |
TYPE_NAMES = { |
# http://heycam.github.io/webidl/#dfn-type-name |
@@ -63,6 +65,7 @@ TYPE_NAMES = { |
'unrestricted double': 'UnrestrictedDouble', |
'DOMString': 'String', |
'ByteString': 'ByteString', |
+ 'ScalarValueString': 'ScalarValueString', |
'object': 'Object', |
'Date': 'Date', |
} |