OLD | NEW |
1 # Copyright (C) 2013 Google Inc. All rights reserved. | 1 # Copyright (C) 2013 Google Inc. All rights reserved. |
2 # coding=utf-8 | 2 # coding=utf-8 |
3 # | 3 # |
4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
6 # met: | 6 # met: |
7 # | 7 # |
8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 import v8_methods | 45 import v8_methods |
46 import v8_types | 46 import v8_types |
47 from v8_types import cpp_ptr_type, cpp_template_type | 47 from v8_types import cpp_ptr_type, cpp_template_type |
48 import v8_utilities | 48 import v8_utilities |
49 from v8_utilities import (capitalize, conditional_string, cpp_name, gc_type, | 49 from v8_utilities import (capitalize, conditional_string, cpp_name, gc_type, |
50 has_extended_attribute_value, runtime_enabled_function
_name, | 50 has_extended_attribute_value, runtime_enabled_function
_name, |
51 extended_attribute_value_as_list) | 51 extended_attribute_value_as_list) |
52 | 52 |
53 | 53 |
54 INTERFACE_H_INCLUDES = frozenset([ | 54 INTERFACE_H_INCLUDES = frozenset([ |
| 55 'bindings/core/v8/PropertyBag.h', |
55 'bindings/core/v8/ScriptWrappable.h', | 56 'bindings/core/v8/ScriptWrappable.h', |
56 'bindings/core/v8/V8Binding.h', | 57 'bindings/core/v8/V8Binding.h', |
57 'bindings/core/v8/V8DOMWrapper.h', | 58 'bindings/core/v8/V8DOMWrapper.h', |
58 'bindings/core/v8/WrapperTypeInfo.h', | 59 'bindings/core/v8/WrapperTypeInfo.h', |
59 'platform/heap/Handle.h', | 60 'platform/heap/Handle.h', |
60 ]) | 61 ]) |
61 INTERFACE_CPP_INCLUDES = frozenset([ | 62 INTERFACE_CPP_INCLUDES = frozenset([ |
62 'bindings/core/v8/ExceptionState.h', | 63 'bindings/core/v8/ExceptionState.h', |
63 'bindings/core/v8/V8DOMConfiguration.h', | 64 'bindings/core/v8/V8DOMConfiguration.h', |
64 'bindings/core/v8/V8HiddenValue.h', | 65 'bindings/core/v8/V8HiddenValue.h', |
(...skipping 1059 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1124 deleter = next( | 1125 deleter = next( |
1125 method | 1126 method |
1126 for method in interface.operations | 1127 for method in interface.operations |
1127 if ('deleter' in method.specials and | 1128 if ('deleter' in method.specials and |
1128 len(method.arguments) == 1 and | 1129 len(method.arguments) == 1 and |
1129 str(method.arguments[0].idl_type) == 'DOMString')) | 1130 str(method.arguments[0].idl_type) == 'DOMString')) |
1130 except StopIteration: | 1131 except StopIteration: |
1131 return None | 1132 return None |
1132 | 1133 |
1133 return property_deleter(deleter) | 1134 return property_deleter(deleter) |
OLD | NEW |