Files
sdk/runtime/vm/bootstrap_nocorelib.cc
T
asiva@google.com b51b053da4 Remove print_bootstrap flag as it is not needed anymore considering that we
load core libraries directly from the sources and do not concatenate all the
files into a single script file.

R=regis@google.com

Review URL: https://codereview.chromium.org//14631014

git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@22523 260f80e4-7a28-3924-810f-c04153c831b5
2013-05-08 18:56:38 +00:00

20 lines
430 B
C++

// Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
#include "vm/bootstrap.h"
#include "include/dart_api.h"
#include "vm/object.h"
namespace dart {
RawError* Bootstrap::LoadandCompileScripts() {
UNREACHABLE();
return Error::null();
}
} // namespace dart