| Index: Source/bindings/scripts/v8_types.py
|
| diff --git a/Source/bindings/scripts/v8_types.py b/Source/bindings/scripts/v8_types.py
|
| index f5c92bcfc28ebc2c4a955765cc627b3c43accbd1..f7ed4519cb63f9ea707605e095011277367fc986 100644
|
| --- a/Source/bindings/scripts/v8_types.py
|
| +++ b/Source/bindings/scripts/v8_types.py
|
| @@ -70,8 +70,10 @@ ARRAY_BUFFER_AND_VIEW_TYPES = TYPED_ARRAY_TYPES.union(frozenset([
|
| 'ArrayBuffer',
|
| 'ArrayBufferView',
|
| 'DataView',
|
| + 'SharedArrayBuffer',
|
| ]))
|
|
|
| +
|
| IdlType.is_array_buffer_or_view = property(
|
| lambda self: self.base_type in ARRAY_BUFFER_AND_VIEW_TYPES)
|
|
|
|
|