Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(476)

Side by Side Diff: runtime/vm/bootstrap_natives.h

Issue 211243009: Implement MethodMirror.location in the VM. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add to api and fix type warnings Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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_
OLDNEW
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | runtime/vm/symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698