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

Side by Side Diff: runtime/vm/bootstrap.cc

Issue 9422019: isolates refactor: this change introduces 'dart:isolate' as a library. This is a (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/vm/bootstrap.h ('k') | runtime/vm/bootstrap_natives.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #include "vm/bootstrap.h" 5 #include "vm/bootstrap.h"
6 6
7 #include "include/dart_api.h" 7 #include "include/dart_api.h"
8 8
9 #include "vm/compiler.h" 9 #include "vm/compiler.h"
10 #include "vm/dart_api_impl.h" 10 #include "vm/dart_api_impl.h"
(...skipping 20 matching lines...) Expand all
31 Heap::kOld)); 31 Heap::kOld));
32 const String& src = String::Handle(String::New(corelib_impl_source_, 32 const String& src = String::Handle(String::New(corelib_impl_source_,
33 Heap::kOld)); 33 Heap::kOld));
34 34
35 const Script& result = 35 const Script& result =
36 Script::Handle(Script::New(url, src, RawScript::kSource)); 36 Script::Handle(Script::New(url, src, RawScript::kSource));
37 return result.raw(); 37 return result.raw();
38 } 38 }
39 39
40 40
41 RawScript* Bootstrap::LoadIsolateScript() {
42 const String& url = String::Handle(String::New("dart:isolate", Heap::kOld));
43 const String& src = String::Handle(String::New(isolate_source_, Heap::kOld));
44
45 const Script& result =
46 Script::Handle(Script::New(url, src, RawScript::kSource));
47 return result.raw();
48 }
49
50
41 RawError* Bootstrap::Compile(const Library& library, const Script& script) { 51 RawError* Bootstrap::Compile(const Library& library, const Script& script) {
42 if (FLAG_print_bootstrap) { 52 if (FLAG_print_bootstrap) {
43 OS::Print("Bootstrap source '%s':\n%s\n", 53 OS::Print("Bootstrap source '%s':\n%s\n",
44 String::Handle(script.url()).ToCString(), 54 String::Handle(script.url()).ToCString(),
45 String::Handle(script.source()).ToCString()); 55 String::Handle(script.source()).ToCString());
46 } 56 }
47 library.SetLoadInProgress(); 57 library.SetLoadInProgress();
48 const Error& error = Error::Handle(Compiler::Compile(library, script)); 58 const Error& error = Error::Handle(Compiler::Compile(library, script));
49 if (error.IsNull()) { 59 if (error.IsNull()) {
50 library.SetLoaded(); 60 library.SetLoaded();
61 } else {
62 library.SetLoadError();
51 } 63 }
52 return error.raw(); 64 return error.raw();
53 } 65 }
54 66
55 } // namespace dart 67 } // namespace dart
OLDNEW
« no previous file with comments | « runtime/vm/bootstrap.h ('k') | runtime/vm/bootstrap_natives.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698