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

Unified Diff: vm/dart_entry.cc

Issue 9616044: Adds new apis Dart_GetField/Dart_SetField. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 9 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: vm/dart_entry.cc
===================================================================
--- vm/dart_entry.cc (revision 4977)
+++ vm/dart_entry.cc (working copy)
@@ -195,8 +195,10 @@
const Instance& message) {
Library& isolate_lib = Library::Handle(Library::IsolateLibrary());
ASSERT(!isolate_lib.IsNull());
+ const String& public_class_name =
+ String::Handle(String::NewSymbol("_ReceivePortImpl"));
const String& class_name =
- String::Handle(isolate_lib.PrivateName("_ReceivePortImpl"));
+ String::Handle(isolate_lib.PrivateName(public_class_name));
const String& function_name =
String::Handle(String::NewSymbol("_handleMessage"));
const int kNumArguments = 3;

Powered by Google App Engine
This is Rietveld 408576698