| 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 <stdio.h> | 5 #include <stdio.h> |
| 6 | 6 |
| 7 #include "include/dart_api.h" | 7 #include "include/dart_api.h" |
| 8 | 8 |
| 9 #include "bin/builtin.h" | 9 #include "bin/builtin.h" |
| 10 #include "bin/dartutils.h" | 10 #include "bin/dartutils.h" |
| 11 | 11 #include "bin/io_natives.h" |
| 12 | 12 |
| 13 Builtin::builtin_lib_props Builtin::builtin_libraries_[] = { | 13 Builtin::builtin_lib_props Builtin::builtin_libraries_[] = { |
| 14 /* { url_, source_, patch_url_, patch_source_, has_natives_ } */ | 14 /* { url_, source_, patch_url_, patch_source_, has_natives_ } */ |
| 15 { DartUtils::kBuiltinLibURL, builtin_source_, NULL, NULL, true }, | 15 { DartUtils::kBuiltinLibURL, builtin_source_, NULL, NULL, true }, |
| 16 { DartUtils::kJsonLibURL, json_source_, NULL, NULL, false }, | 16 { DartUtils::kJsonLibURL, json_source_, NULL, NULL, false }, |
| 17 { DartUtils::kUriLibURL, uri_source_, NULL, NULL, false }, | 17 { DartUtils::kUriLibURL, uri_source_, NULL, NULL, false }, |
| 18 { DartUtils::kCryptoLibURL, crypto_source_, NULL, NULL, false }, | 18 { DartUtils::kCryptoLibURL, crypto_source_, NULL, NULL, false }, |
| 19 { DartUtils::kIOLibURL, io_source_, | 19 { DartUtils::kIOLibURL, io_source_, |
| 20 DartUtils::kIOLibPatchURL, io_patch_, true }, | 20 DartUtils::kIOLibPatchURL, io_patch_, true }, |
| 21 { DartUtils::kUtfLibURL, utf_source_, NULL, NULL, false } | 21 { DartUtils::kUtfLibURL, utf_source_, NULL, NULL, false } |
| 22 }; | 22 }; |
| 23 | 23 |
| 24 | 24 |
| 25 Dart_Handle Builtin::Source(BuiltinLibraryId id) { | 25 Dart_Handle Builtin::Source(BuiltinLibraryId id) { |
| 26 ASSERT((sizeof(builtin_libraries_) / sizeof(builtin_lib_props)) == | 26 ASSERT((sizeof(builtin_libraries_) / sizeof(builtin_lib_props)) == |
| 27 kInvalidLibrary); | 27 kInvalidLibrary); |
| 28 ASSERT(id >= kBuiltinLibrary && id < kInvalidLibrary); | 28 ASSERT(id >= kBuiltinLibrary && id < kInvalidLibrary); |
| 29 return DartUtils::NewString(builtin_libraries_[id].source_); | 29 return DartUtils::NewString(builtin_libraries_[id].source_); |
| 30 } | 30 } |
| 31 | 31 |
| 32 /** |
| 33 * Looks up native functions in both libdart_builtin and libdart_io. |
| 34 */ |
| 35 Dart_NativeFunction Builtin::NativeLookup(Dart_Handle name, |
| 36 int argument_count) { |
| 37 Dart_NativeFunction result = BuiltinNativeLookup(name, argument_count); |
| 38 if (result != NULL) return result; |
| 39 return IONativeLookup(name, argument_count); |
| 40 } |
| 32 | 41 |
| 33 void Builtin::SetNativeResolver(BuiltinLibraryId id) { | 42 void Builtin::SetNativeResolver(BuiltinLibraryId id) { |
| 34 UNREACHABLE(); | 43 UNREACHABLE(); |
| 35 } | 44 } |
| 36 | 45 |
| 37 | 46 |
| 38 Dart_Handle Builtin::LoadAndCheckLibrary(BuiltinLibraryId id) { | 47 Dart_Handle Builtin::LoadAndCheckLibrary(BuiltinLibraryId id) { |
| 39 ASSERT((sizeof(builtin_libraries_) / sizeof(builtin_lib_props)) == | 48 ASSERT((sizeof(builtin_libraries_) / sizeof(builtin_lib_props)) == |
| 40 kInvalidLibrary); | 49 kInvalidLibrary); |
| 41 ASSERT(id >= kBuiltinLibrary && id < kInvalidLibrary); | 50 ASSERT(id >= kBuiltinLibrary && id < kInvalidLibrary); |
| (...skipping 10 matching lines...) Expand all Loading... |
| 52 Dart_Handle patch_url = | 61 Dart_Handle patch_url = |
| 53 DartUtils::NewString(builtin_libraries_[id].patch_url_); | 62 DartUtils::NewString(builtin_libraries_[id].patch_url_); |
| 54 Dart_Handle patch_source = | 63 Dart_Handle patch_source = |
| 55 DartUtils::NewString(builtin_libraries_[id].patch_source_); | 64 DartUtils::NewString(builtin_libraries_[id].patch_source_); |
| 56 DART_CHECK_VALID(Dart_LoadPatch(library, patch_url, patch_source)); | 65 DART_CHECK_VALID(Dart_LoadPatch(library, patch_url, patch_source)); |
| 57 } | 66 } |
| 58 } | 67 } |
| 59 DART_CHECK_VALID(library); | 68 DART_CHECK_VALID(library); |
| 60 return library; | 69 return library; |
| 61 } | 70 } |
| OLD | NEW |