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

Unified Diff: runtime/vm/native_api_impl.cc

Issue 1318803002: Toward precompiled snapshots. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 3 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
« no previous file with comments | « runtime/vm/dart_entry.h ('k') | runtime/vm/object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/native_api_impl.cc
diff --git a/runtime/vm/native_api_impl.cc b/runtime/vm/native_api_impl.cc
index 0fe234f7a5f5e8b2206fbbd548e04934b976eaf7..da1d09964a6d5aec8e11df27502693529b30433d 100644
--- a/runtime/vm/native_api_impl.cc
+++ b/runtime/vm/native_api_impl.cc
@@ -11,7 +11,6 @@
#include "vm/message.h"
#include "vm/native_message_handler.h"
#include "vm/port.h"
-#include "vm/precompiler.h"
namespace dart {
@@ -80,16 +79,6 @@ static void CompileAll(Isolate* isolate, Dart_Handle* result) {
}
}
-static void Precompile(Isolate* isolate, Dart_Handle* result) {
- ASSERT(isolate != NULL);
- const Error& error = Error::Handle(isolate, Precompiler::CompileAll());
- if (error.IsNull()) {
- *result = Api::Success();
- } else {
- *result = Api::NewHandle(isolate, error.raw());
- }
-}
-
DART_EXPORT Dart_Handle Dart_CompileAll() {
DARTSCOPE(Thread::Current());
@@ -102,16 +91,4 @@ DART_EXPORT Dart_Handle Dart_CompileAll() {
return result;
}
-
-DART_EXPORT Dart_Handle Dart_Precompile() {
- DARTSCOPE(Thread::Current());
- Dart_Handle result = Api::CheckAndFinalizePendingClasses(I);
- if (::Dart_IsError(result)) {
- return result;
- }
- CHECK_CALLBACK_STATE(I);
- Precompile(I, &result);
- return result;
-}
-
} // namespace dart
« no previous file with comments | « runtime/vm/dart_entry.h ('k') | runtime/vm/object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698