Chromium Code Reviews| Index: Source/bindings/scripts/v8_interface.py |
| diff --git a/Source/bindings/scripts/v8_interface.py b/Source/bindings/scripts/v8_interface.py |
| index d96ddc9b1675423be3cb5837bcd995056c1ffd27..4cd1af2b22c6c4426dea174d02c2cfc4495bfecf 100644 |
| --- a/Source/bindings/scripts/v8_interface.py |
| +++ b/Source/bindings/scripts/v8_interface.py |
| @@ -774,6 +774,11 @@ def resolution_tests_methods(effective_overloads): |
| test = 'V8{idl_type}::hasInstance({cpp_value}, info.GetIsolate())'.format(idl_type=idl_type.base_type, cpp_value=cpp_value) |
| yield test, method |
| + for argument in arguments: |
|
yunchao
2014/09/30 09:17:29
resolution_tests_methods has filtered a lot of arg
Jens Widell
2014/09/30 09:38:22
Ah, yes, that's true. Note though that this functi
|
| + if argument['idl_type_object'].is_wrapper_type: |
| + argument['type_checked_already'] = True |
| + |
| + |
| # 8. Otherwise: if V is any kind of object except for a native Date object, |
| # a native RegExp object, and there is an entry in S that has one of the |
| # following types at position i of its type list, |