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

Unified Diff: vm/ast.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
Index: vm/ast.cc
===================================================================
--- vm/ast.cc (revision 16285)
+++ vm/ast.cc (working copy)
@@ -426,12 +426,9 @@
if (getter_func.IsNull() || !getter_func.is_const()) {
return NULL;
}
- GrowableArray<const Object*> arguments;
- const Array& kNoArgumentNames = Array::Handle();
- const Object& result =
- Object::Handle(DartEntry::InvokeStatic(getter_func,
- arguments,
- kNoArgumentNames));
+ const Array& args = Array::Handle(Object::empty_array());
+ const Object& result = Object::Handle(DartEntry::InvokeStatic(getter_func,
+ args));
if (result.IsError() || result.IsNull()) {
// TODO(turnidge): We could get better error messages by returning
// the Error object directly to the parser. This will involve
« no previous file with comments | « tests/vm/vm.status ('k') | vm/code_descriptors_test.cc » ('j') | vm/dart_entry.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698