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

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

Issue 419643003: Fix a typo in bindings/scripts/v8_types.py (isoalte -> isolate) (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/scripts/v8_types.py
diff --git a/Source/bindings/scripts/v8_types.py b/Source/bindings/scripts/v8_types.py
index 3d543a76cb0951013b1ee9705f7a8839bdb53053..d6acc6067ffb8b9cb9f3d29932609987a944a021 100644
--- a/Source/bindings/scripts/v8_types.py
+++ b/Source/bindings/scripts/v8_types.py
@@ -459,7 +459,7 @@ def v8_value_to_cpp_value(idl_type, extended_attributes, v8_value, index, isolat
'{v8_value}->Is{idl_type}() ? '
'V8{idl_type}::toNative(v8::Handle<v8::{idl_type}>::Cast({v8_value})) : 0')
elif idl_type.is_dictionary:
- cpp_expression_format = 'V8{idl_type}::toNative({isoalte}, {v8_value})'
+ cpp_expression_format = 'V8{idl_type}::toNative({isolate}, {v8_value})'
else:
cpp_expression_format = (
'V8{idl_type}::toNativeWithTypeCheck({isolate}, {v8_value})')
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698