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

Unified Diff: runtime/lib/invocation_mirror.cc

Issue 12315087: Hook up simulator (if needed) when calling Dart code. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 10 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 | « runtime/lib/function.cc ('k') | runtime/lib/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/lib/invocation_mirror.cc
===================================================================
--- runtime/lib/invocation_mirror.cc (revision 18992)
+++ runtime/lib/invocation_mirror.cc (working copy)
@@ -44,9 +44,9 @@
invoke_arguments,
fun_args_desc);
} else {
- result = DartEntry::InvokeDynamic(function,
- invoke_arguments,
- fun_args_desc);
+ result = DartEntry::InvokeFunction(function,
+ invoke_arguments,
+ fun_args_desc);
}
if (result.IsError()) {
Exceptions::PropagateError(Error::Cast(result));
« no previous file with comments | « runtime/lib/function.cc ('k') | runtime/lib/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698