| Index: Source/bindings/scripts/generate_global_constructors.py
|
| diff --git a/Source/bindings/scripts/generate_global_constructors.py b/Source/bindings/scripts/generate_global_constructors.py
|
| index 81838fe1865d5f819eaa9e7bdd41e2bd458584bc..6e31edc60cbb109260b22e1d1d69070f98d78386 100755
|
| --- a/Source/bindings/scripts/generate_global_constructors.py
|
| +++ b/Source/bindings/scripts/generate_global_constructors.py
|
| @@ -25,7 +25,7 @@ import re
|
| import sys
|
|
|
| from collections import defaultdict
|
| -from utilities import get_file_contents, idl_filename_to_interface_name, read_file_to_list, write_file, get_interface_extended_attributes_from_idl, is_callback_interface_from_idl
|
| +from utilities import get_file_contents, idl_filename_to_interface_name, read_file_to_list, write_file, get_interface_extended_attributes_from_idl, is_callback_interface_from_idl, is_dictionary_from_idl
|
|
|
| interface_name_to_global_names = {}
|
| global_name_to_constructors = defaultdict(list)
|
| @@ -78,6 +78,7 @@ def record_global_constructors(idl_filename):
|
| # but there are none of these in Blink.
|
| # http://heycam.github.io/webidl/#es-interfaces
|
| if (is_callback_interface_from_idl(idl_file_contents) or
|
| + is_dictionary_from_idl(idl_file_contents) or
|
| 'NoInterfaceObject' in extended_attributes):
|
| return
|
|
|
|
|