| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 V(LibraryMirror_invokeSetter, 4) \ | 272 V(LibraryMirror_invokeSetter, 4) \ |
| 273 V(TypeVariableMirror_owner, 1) \ | 273 V(TypeVariableMirror_owner, 1) \ |
| 274 V(TypeVariableMirror_upper_bound, 1) \ | 274 V(TypeVariableMirror_upper_bound, 1) \ |
| 275 V(DeclarationMirror_metadata, 1) \ | 275 V(DeclarationMirror_metadata, 1) \ |
| 276 V(FunctionTypeMirror_call_method, 2) \ | 276 V(FunctionTypeMirror_call_method, 2) \ |
| 277 V(FunctionTypeMirror_parameters, 2) \ | 277 V(FunctionTypeMirror_parameters, 2) \ |
| 278 V(FunctionTypeMirror_return_type, 1) \ | 278 V(FunctionTypeMirror_return_type, 1) \ |
| 279 V(MethodMirror_owner, 1) \ | 279 V(MethodMirror_owner, 1) \ |
| 280 V(MethodMirror_parameters, 2) \ | 280 V(MethodMirror_parameters, 2) \ |
| 281 V(MethodMirror_return_type, 1) \ | 281 V(MethodMirror_return_type, 1) \ |
| 282 V(MethodMirror_source, 1) \ |
| 282 V(ParameterMirror_type, 2) \ | 283 V(ParameterMirror_type, 2) \ |
| 283 V(TypedefMirror_referent, 1) \ | 284 V(TypedefMirror_referent, 1) \ |
| 284 V(VariableMirror_type, 1) \ | 285 V(VariableMirror_type, 1) \ |
| 285 V(GrowableObjectArray_allocate, 2) \ | 286 V(GrowableObjectArray_allocate, 2) \ |
| 286 V(GrowableObjectArray_getIndexed, 2) \ | 287 V(GrowableObjectArray_getIndexed, 2) \ |
| 287 V(GrowableObjectArray_setIndexed, 3) \ | 288 V(GrowableObjectArray_setIndexed, 3) \ |
| 288 V(GrowableObjectArray_getLength, 1) \ | 289 V(GrowableObjectArray_getLength, 1) \ |
| 289 V(GrowableObjectArray_getCapacity, 1) \ | 290 V(GrowableObjectArray_getCapacity, 1) \ |
| 290 V(GrowableObjectArray_setLength, 2) \ | 291 V(GrowableObjectArray_setLength, 2) \ |
| 291 V(GrowableObjectArray_setData, 2) \ | 292 V(GrowableObjectArray_setData, 2) \ |
| (...skipping 11 matching lines...) Expand all Loading... |
| 303 static void DN_##name(Dart_NativeArguments args); | 304 static void DN_##name(Dart_NativeArguments args); |
| 304 | 305 |
| 305 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 306 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
| 306 | 307 |
| 307 #undef DECLARE_BOOTSTRAP_NATIVE | 308 #undef DECLARE_BOOTSTRAP_NATIVE |
| 308 }; | 309 }; |
| 309 | 310 |
| 310 } // namespace dart | 311 } // namespace dart |
| 311 | 312 |
| 312 #endif // VM_BOOTSTRAP_NATIVES_H_ | 313 #endif // VM_BOOTSTRAP_NATIVES_H_ |
| OLD | NEW |