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

Unified Diff: runtime/vm/code_generator_test.cc

Issue 22303002: Auto create ApiLocalScope before calling native functions, this ensures that (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 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: runtime/vm/code_generator_test.cc
===================================================================
--- runtime/vm/code_generator_test.cc (revision 25778)
+++ runtime/vm/code_generator_test.cc (working copy)
@@ -222,7 +222,8 @@
new NativeBodyNode(kPos,
function,
native_name,
- native_function)));
+ native_function,
+ false)));
srdjan 2013/08/06 17:06:28 Comment what 'false' means. (also on cases below)
siva 2013/08/06 19:04:26 Done.
}
@@ -402,7 +403,8 @@
new NativeBodyNode(kPos,
function,
native_name,
- native_function)));
+ native_function,
+ false)));
}
@@ -489,7 +491,8 @@
new NativeBodyNode(kPos,
function,
native_name,
- native_function)));
+ native_function,
+ false)));
}

Powered by Google App Engine
This is Rietveld 408576698