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

Unified Diff: vm/code_descriptors_test.cc

Issue 11613009: Changed the API in DartEntry for invoking dart code from C++ to make it more compatible with the re… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years 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 | « vm/ast.cc ('k') | vm/code_generator.cc » ('j') | vm/dart_entry.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/code_descriptors_test.cc
===================================================================
--- vm/code_descriptors_test.cc (revision 16285)
+++ vm/code_descriptors_test.cc (working copy)
@@ -277,10 +277,9 @@
// Now invoke 'A.moo' and it will trigger a GC when the native function
// is called, this should then cause the stack map of function 'A.foo'
// to be traversed and the appropriate objects visited.
- GrowableArray<const Object*> arguments;
- const Array& kNoArgumentNames = Array::Handle();
- Object& result = Object::Handle();
- result = DartEntry::InvokeStatic(function_foo, arguments, kNoArgumentNames);
+ const Array& args = Array::Handle(Object::empty_array());
+ const Object& result = Object::Handle(DartEntry::InvokeStatic(function_foo,
+ args));
EXPECT(!result.IsError());
}
« no previous file with comments | « vm/ast.cc ('k') | vm/code_generator.cc » ('j') | vm/dart_entry.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698