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 #ifndef VM_BOOTSTRAP_NATIVES_H_ | 5 #ifndef VM_BOOTSTRAP_NATIVES_H_ |
6 #define VM_BOOTSTRAP_NATIVES_H_ | 6 #define VM_BOOTSTRAP_NATIVES_H_ |
7 | 7 |
8 #include "vm/native_entry.h" | 8 #include "vm/native_entry.h" |
9 | 9 |
10 // bootstrap dart natives used in the core dart library. | 10 // bootstrap dart natives used in the core dart library. |
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
341 V(LinkedHashMap_setDeletedKeys, 2) \ | 341 V(LinkedHashMap_setDeletedKeys, 2) \ |
342 V(WeakProperty_new, 2) \ | 342 V(WeakProperty_new, 2) \ |
343 V(WeakProperty_getKey, 1) \ | 343 V(WeakProperty_getKey, 1) \ |
344 V(WeakProperty_getValue, 1) \ | 344 V(WeakProperty_getValue, 1) \ |
345 V(WeakProperty_setValue, 2) \ | 345 V(WeakProperty_setValue, 2) \ |
346 V(Uri_isWindowsPlatform, 0) \ | 346 V(Uri_isWindowsPlatform, 0) \ |
347 V(LibraryPrefix_load, 1) \ | 347 V(LibraryPrefix_load, 1) \ |
348 V(LibraryPrefix_invalidateDependentCode, 1) \ | 348 V(LibraryPrefix_invalidateDependentCode, 1) \ |
349 V(LibraryPrefix_loadError, 1) \ | 349 V(LibraryPrefix_loadError, 1) \ |
350 V(LibraryPrefix_isLoaded, 1) \ | 350 V(LibraryPrefix_isLoaded, 1) \ |
| 351 V(LibraryPrefix_hasError, 1) \ |
351 V(UserTag_new, 2) \ | 352 V(UserTag_new, 2) \ |
352 V(UserTag_label, 1) \ | 353 V(UserTag_label, 1) \ |
353 V(UserTag_defaultTag, 0) \ | 354 V(UserTag_defaultTag, 0) \ |
354 V(UserTag_makeCurrent, 1) \ | 355 V(UserTag_makeCurrent, 1) \ |
355 V(Profiler_getCurrentTag, 0) \ | 356 V(Profiler_getCurrentTag, 0) \ |
356 V(ClassID_getID, 1) \ | 357 V(ClassID_getID, 1) \ |
357 V(VMService_SendIsolateServiceMessage, 2) \ | 358 V(VMService_SendIsolateServiceMessage, 2) \ |
358 V(VMService_SendRootServiceMessage, 1) \ | 359 V(VMService_SendRootServiceMessage, 1) \ |
359 V(VMService_OnStart, 0) \ | 360 V(VMService_OnStart, 0) \ |
360 V(VMService_OnExit, 0) \ | 361 V(VMService_OnExit, 0) \ |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 #ifndef PRODUCT | 432 #ifndef PRODUCT |
432 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 433 MIRRORS_BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
433 #endif | 434 #endif |
434 | 435 |
435 #undef DECLARE_BOOTSTRAP_NATIVE | 436 #undef DECLARE_BOOTSTRAP_NATIVE |
436 }; | 437 }; |
437 | 438 |
438 } // namespace dart | 439 } // namespace dart |
439 | 440 |
440 #endif // VM_BOOTSTRAP_NATIVES_H_ | 441 #endif // VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |