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

Unified Diff: vm/stub_code_x64_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
« vm/dart_entry.h ('K') | « vm/stub_code_x64.cc ('k') | vm/unit_test.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/stub_code_x64_test.cc
===================================================================
--- vm/stub_code_x64_test.cc (revision 16285)
+++ vm/stub_code_x64_test.cc (working copy)
@@ -70,10 +70,9 @@
const Code& code = Code::Handle(Code::FinalizeCode(
*CreateFunction("Test_CallRuntimeStubCode"), &_assembler_));
const Function& function = RegisterFakeFunction(kName, code);
- GrowableArray<const Object*> arguments;
- const Array& kNoArgumentNames = Array::Handle();
+ const Array& args = Array::Handle(Object::empty_array());
Smi& result = Smi::Handle();
- result ^= DartEntry::InvokeStatic(function, arguments, kNoArgumentNames);
+ result ^= DartEntry::InvokeStatic(function, args);
EXPECT_EQ((value1 - value2), result.Value());
}
@@ -105,10 +104,9 @@
const Code& code = Code::Handle(Code::FinalizeCode(
*CreateFunction("Test_CallLeafRuntimeStubCode"), &_assembler_));
const Function& function = RegisterFakeFunction(kName, code);
- GrowableArray<const Object*> arguments;
- const Array& kNoArgumentNames = Array::Handle();
+ const Array& args = Array::Handle(Object::empty_array());
Smi& result = Smi::Handle();
- result ^= DartEntry::InvokeStatic(function, arguments, kNoArgumentNames);
+ result ^= DartEntry::InvokeStatic(function, args);
EXPECT_EQ((value1 + value2), result.Value());
}
« vm/dart_entry.h ('K') | « vm/stub_code_x64.cc ('k') | vm/unit_test.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698