| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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/dart_api_impl.h" | 9 #include "vm/dart_api_impl.h" |
| 10 #include "vm/object.h" | 10 #include "vm/object.h" |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 return Script::null(); | 68 return Script::null(); |
| 69 } | 69 } |
| 70 | 70 |
| 71 | 71 |
| 72 RawScript* Bootstrap::LoadScalarlistScript(bool is_patch) { | 72 RawScript* Bootstrap::LoadScalarlistScript(bool is_patch) { |
| 73 UNREACHABLE(); | 73 UNREACHABLE(); |
| 74 return Script::null(); | 74 return Script::null(); |
| 75 } | 75 } |
| 76 | 76 |
| 77 | 77 |
| 78 RawScript* Bootstrap::LoadTypedDataScript(bool is_patch) { |
| 79 UNREACHABLE(); |
| 80 return Script::null(); |
| 81 } |
| 82 |
| 83 |
| 78 RawScript* Bootstrap::LoadUriScript(bool is_patch) { | 84 RawScript* Bootstrap::LoadUriScript(bool is_patch) { |
| 79 UNREACHABLE(); | 85 UNREACHABLE(); |
| 80 return Script::null(); | 86 return Script::null(); |
| 81 } | 87 } |
| 82 | 88 |
| 83 | 89 |
| 84 RawScript* Bootstrap::LoadUtfScript(bool is_patch) { | 90 RawScript* Bootstrap::LoadUtfScript(bool is_patch) { |
| 85 UNREACHABLE(); | 91 UNREACHABLE(); |
| 86 return Script::null(); | 92 return Script::null(); |
| 87 } | 93 } |
| 88 | 94 |
| 89 | 95 |
| 90 RawError* Bootstrap::Compile(const Library& library, const Script& script) { | 96 RawError* Bootstrap::Compile(const Library& library, const Script& script) { |
| 91 UNREACHABLE(); | 97 UNREACHABLE(); |
| 92 return Error::null(); | 98 return Error::null(); |
| 93 } | 99 } |
| 94 | 100 |
| 95 } // namespace dart | 101 } // namespace dart |
| OLD | NEW |