Address Ivan's review comments.

Review URL: https://chromiumcodereview.appspot.com//9696048

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@5438 260f80e4-7a28-3924-810f-c04153c831b5
This commit is contained in:
hausner@google.com
2012-03-13 21:07:42 +00:00
parent 9655e2af7d
commit 09b97fefd4
3 changed files with 2 additions and 1 deletions
-1
View File
@@ -5,7 +5,6 @@
#include "vm/bootstrap_natives.h"
#include "vm/bigint_operations.h"
#include "vm/exceptions.h"
#include "vm/native_entry.h"
#include "vm/object.h"
#include "vm/os.h"
+1
View File
@@ -258,6 +258,7 @@ static char* BuildIsolateName(const char* script_name,
DEFINE_NATIVE_ENTRY(IsolateNatives_start, 2) {
Isolate* preserved_isolate = Isolate::Current();
GET_NATIVE_ARGUMENT(Instance, runnable, arguments->At(0));
// arguments->At(1) unused.
const Class& runnable_class = Class::Handle(runnable.clazz());
const char* class_name = String::Handle(runnable_class.Name()).ToCString();
const Library& library = Library::Handle(runnable_class.library());
+1
View File
@@ -7,6 +7,7 @@
#include "vm/allocation.h"
#include "vm/assembler.h"
#include "vm/exceptions.h"
#include "vm/native_arguments.h"
#include "vm/verifier.h"