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 311 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
322 V(TypeVariableMirror_owner, 1) \ | 322 V(TypeVariableMirror_owner, 1) \ |
323 V(TypeVariableMirror_upper_bound, 1) \ | 323 V(TypeVariableMirror_upper_bound, 1) \ |
324 V(DeclarationMirror_metadata, 1) \ | 324 V(DeclarationMirror_metadata, 1) \ |
325 V(FunctionTypeMirror_call_method, 2) \ | 325 V(FunctionTypeMirror_call_method, 2) \ |
326 V(FunctionTypeMirror_parameters, 2) \ | 326 V(FunctionTypeMirror_parameters, 2) \ |
327 V(FunctionTypeMirror_return_type, 2) \ | 327 V(FunctionTypeMirror_return_type, 2) \ |
328 V(MethodMirror_owner, 1) \ | 328 V(MethodMirror_owner, 1) \ |
329 V(MethodMirror_parameters, 2) \ | 329 V(MethodMirror_parameters, 2) \ |
330 V(MethodMirror_return_type, 2) \ | 330 V(MethodMirror_return_type, 2) \ |
331 V(MethodMirror_source, 1) \ | 331 V(MethodMirror_source, 1) \ |
| 332 V(MethodMirror_location, 1) \ |
332 V(ParameterMirror_type, 3) \ | 333 V(ParameterMirror_type, 3) \ |
333 V(TypedefMirror_referent, 1) \ | 334 V(TypedefMirror_referent, 1) \ |
334 V(TypedefMirror_declaration, 1) \ | 335 V(TypedefMirror_declaration, 1) \ |
335 V(VariableMirror_type, 2) \ | 336 V(VariableMirror_type, 2) \ |
336 V(GrowableList_allocate, 2) \ | 337 V(GrowableList_allocate, 2) \ |
337 V(GrowableList_getIndexed, 2) \ | 338 V(GrowableList_getIndexed, 2) \ |
338 V(GrowableList_setIndexed, 3) \ | 339 V(GrowableList_setIndexed, 3) \ |
339 V(GrowableList_getLength, 1) \ | 340 V(GrowableList_getLength, 1) \ |
340 V(GrowableList_getCapacity, 1) \ | 341 V(GrowableList_getCapacity, 1) \ |
341 V(GrowableList_setLength, 2) \ | 342 V(GrowableList_setLength, 2) \ |
(...skipping 15 matching lines...) Expand all Loading... |
357 static void DN_##name(Dart_NativeArguments args); | 358 static void DN_##name(Dart_NativeArguments args); |
358 | 359 |
359 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) | 360 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) |
360 | 361 |
361 #undef DECLARE_BOOTSTRAP_NATIVE | 362 #undef DECLARE_BOOTSTRAP_NATIVE |
362 }; | 363 }; |
363 | 364 |
364 } // namespace dart | 365 } // namespace dart |
365 | 366 |
366 #endif // VM_BOOTSTRAP_NATIVES_H_ | 367 #endif // VM_BOOTSTRAP_NATIVES_H_ |
OLD | NEW |