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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
44 from v8_globals import includes | 44 from v8_globals import includes |
45 import v8_methods | 45 import v8_methods |
46 import v8_types | 46 import v8_types |
47 import v8_utilities | 47 import v8_utilities |
48 from v8_utilities import (cpp_name_or_partial, cpp_name, has_extended_attribute_
value, | 48 from v8_utilities import (cpp_name_or_partial, cpp_name, has_extended_attribute_
value, |
49 runtime_enabled_feature_name, is_legacy_interface_type
_checking) | 49 runtime_enabled_feature_name, is_legacy_interface_type
_checking) |
50 | 50 |
51 | 51 |
52 INTERFACE_H_INCLUDES = frozenset([ | 52 INTERFACE_H_INCLUDES = frozenset([ |
53 'bindings/core/v8/GeneratedCodeHelper.h', | 53 'bindings/core/v8/GeneratedCodeHelper.h', |
| 54 'bindings/core/v8/NativeValueTraits.h', |
54 'bindings/core/v8/ScriptWrappable.h', | 55 'bindings/core/v8/ScriptWrappable.h', |
55 'bindings/core/v8/ToV8.h', | 56 'bindings/core/v8/ToV8.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', |
(...skipping 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1369 extended_attributes = deleter.extended_attributes | 1370 extended_attributes = deleter.extended_attributes |
1370 is_call_with_script_state = v8_utilities.has_extended_attribute_value(delete
r, 'CallWith', 'ScriptState') | 1371 is_call_with_script_state = v8_utilities.has_extended_attribute_value(delete
r, 'CallWith', 'ScriptState') |
1371 is_ce_reactions = 'CEReactions' in extended_attributes | 1372 is_ce_reactions = 'CEReactions' in extended_attributes |
1372 return { | 1373 return { |
1373 'is_call_with_script_state': is_call_with_script_state, | 1374 'is_call_with_script_state': is_call_with_script_state, |
1374 'is_ce_reactions': is_ce_reactions, | 1375 'is_ce_reactions': is_ce_reactions, |
1375 'is_custom': 'Custom' in extended_attributes, | 1376 'is_custom': 'Custom' in extended_attributes, |
1376 'is_raises_exception': 'RaisesException' in extended_attributes, | 1377 'is_raises_exception': 'RaisesException' in extended_attributes, |
1377 'name': cpp_name(deleter), | 1378 'name': cpp_name(deleter), |
1378 } | 1379 } |
OLD | NEW |