| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 62 return Script::null(); | 62 return Script::null(); |
| 63 } | 63 } |
| 64 | 64 |
| 65 | 65 |
| 66 RawScript* Bootstrap::LoadMirrorsScript(bool is_patch) { | 66 RawScript* Bootstrap::LoadMirrorsScript(bool is_patch) { |
| 67 UNREACHABLE(); | 67 UNREACHABLE(); |
| 68 return Script::null(); | 68 return Script::null(); |
| 69 } | 69 } |
| 70 | 70 |
| 71 | 71 |
| 72 RawScript* Bootstrap::LoadScalarlistScript(bool is_patch) { | |
| 73 UNREACHABLE(); | |
| 74 return Script::null(); | |
| 75 } | |
| 76 | |
| 77 | |
| 78 RawScript* Bootstrap::LoadTypedDataScript(bool is_patch) { | 72 RawScript* Bootstrap::LoadTypedDataScript(bool is_patch) { |
| 79 UNREACHABLE(); | 73 UNREACHABLE(); |
| 80 return Script::null(); | 74 return Script::null(); |
| 81 } | 75 } |
| 82 | 76 |
| 83 | 77 |
| 84 RawScript* Bootstrap::LoadUriScript(bool is_patch) { | 78 RawScript* Bootstrap::LoadUriScript(bool is_patch) { |
| 85 UNREACHABLE(); | 79 UNREACHABLE(); |
| 86 return Script::null(); | 80 return Script::null(); |
| 87 } | 81 } |
| 88 | 82 |
| 89 | 83 |
| 90 RawScript* Bootstrap::LoadUtfScript(bool is_patch) { | 84 RawScript* Bootstrap::LoadUtfScript(bool is_patch) { |
| 91 UNREACHABLE(); | 85 UNREACHABLE(); |
| 92 return Script::null(); | 86 return Script::null(); |
| 93 } | 87 } |
| 94 | 88 |
| 95 | 89 |
| 96 RawError* Bootstrap::Compile(const Library& library, const Script& script) { | 90 RawError* Bootstrap::Compile(const Library& library, const Script& script) { |
| 97 UNREACHABLE(); | 91 UNREACHABLE(); |
| 98 return Error::null(); | 92 return Error::null(); |
| 99 } | 93 } |
| 100 | 94 |
| 101 } // namespace dart | 95 } // namespace dart |
| OLD | NEW |