aboutsummaryrefslogtreecommitdiffstats
path: root/third_party/WebIDL/WebIDL.py
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebIDL/WebIDL.py')
-rw-r--r--third_party/WebIDL/WebIDL.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/third_party/WebIDL/WebIDL.py b/third_party/WebIDL/WebIDL.py
index 20b47d3ad71..6afdfc33959 100644
--- a/third_party/WebIDL/WebIDL.py
+++ b/third_party/WebIDL/WebIDL.py
@@ -2402,6 +2402,7 @@ class IDLType(IDLObject):
# Funny stuff
"interface",
"float32array",
+ "uint8array",
"dictionary",
"enum",
"callback",
@@ -3635,7 +3636,7 @@ class IDLBuiltinType(IDLType):
Types.ArrayBuffer: IDLType.Tags.interface,
Types.ArrayBufferView: IDLType.Tags.interface,
Types.Int8Array: IDLType.Tags.interface,
- Types.Uint8Array: IDLType.Tags.interface,
+ Types.Uint8Array: IDLType.Tags.uint8array,
Types.Uint8ClampedArray: IDLType.Tags.interface,
Types.Int16Array: IDLType.Tags.interface,
Types.Uint16Array: IDLType.Tags.interface,