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

Unified Diff: Source/bindings/tests/results/core/V8TestSpecialOperations.cpp

Issue 564063002: Generate simple code for "trivial" conversions (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebased Created 6 years, 3 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
Index: Source/bindings/tests/results/core/V8TestSpecialOperations.cpp
diff --git a/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp b/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp
index 17487d9936609502ee3cf4354e27936fa4e6e98a..9beb001cbee6e9976d43b3d75cf955a582432aad 100644
--- a/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp
+++ b/Source/bindings/tests/results/core/V8TestSpecialOperations.cpp
@@ -100,7 +100,7 @@ static void namedPropertySetter(v8::Local<v8::String> name, v8::Local<v8::Value>
{
TestSpecialOperations* impl = V8TestSpecialOperations::toImpl(info.Holder());
TOSTRING_VOID(V8StringResource<>, propertyName, name);
- TONATIVE_VOID(Node*, propertyValue, V8Node::toImplWithTypeCheck(info.GetIsolate(), v8Value));
+ Node* propertyValue = V8Node::toImplWithTypeCheck(info.GetIsolate(), v8Value);
bool result = impl->anonymousNamedSetter(propertyName, propertyValue);
if (!result)
return;
« no previous file with comments | « Source/bindings/tests/results/core/V8TestObject.cpp ('k') | Source/bindings/tests/results/modules/V8TestInterface5.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698