Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(352)

Unified Diff: Source/bindings/scripts/v8_interface.py

Issue 274503002: Remove v8_interface.constructor_argument (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | Source/bindings/scripts/v8_methods.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/v8_interface.py
diff --git a/Source/bindings/scripts/v8_interface.py b/Source/bindings/scripts/v8_interface.py
index 405ada7b874bb1bbc7999c93a270bd2c77f6e927..20a322b5803e19a1c39c57fa3af5af06dd02f48a 100644
--- a/Source/bindings/scripts/v8_interface.py
+++ b/Source/bindings/scripts/v8_interface.py
@@ -466,7 +466,7 @@ def overload_check_argument(index, argument):
def generate_constructor(interface, constructor):
return {
'argument_list': constructor_argument_list(interface, constructor),
- 'arguments': [constructor_argument(interface, constructor, argument, index)
+ 'arguments': [v8_methods.generate_argument(interface, constructor, argument, index)
for index, argument in enumerate(constructor.arguments)],
'cpp_type': cpp_template_type(
cpp_ptr_type('RefPtr', 'RawPtr', gc_type(interface)),
@@ -503,24 +503,6 @@ def constructor_argument_list(interface, constructor):
return arguments
-def constructor_argument(interface, constructor, argument, index):
- idl_type = argument.idl_type
- return {
- 'cpp_value':
- v8_methods.cpp_value(interface, constructor, index),
- 'has_default': 'Default' in argument.extended_attributes,
- 'has_legacy_overload_string': False, # Required for overload resolution
- # Dictionary is special-cased, but arrays and sequences shouldn't be
- 'idl_type': not idl_type.array_or_sequence_type and idl_type.base_type,
- 'idl_type_object': idl_type,
- 'index': index,
- 'is_optional': argument.is_optional,
- 'name': argument.name,
- 'v8_value_to_local_cpp_value':
- v8_methods.v8_value_to_local_cpp_value(argument, index),
- }
-
-
def generate_constructor_overloads(constructors):
if len(constructors) <= 1:
return
« no previous file with comments | « no previous file | Source/bindings/scripts/v8_methods.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698