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

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

Issue 23038010: Fix Function.end_token_pos() and implement MethodMirror.source getter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebase Created 7 years, 3 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/flow_graph_builder.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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 V(LibraryMirror_invokeSetter, 4) \ 276 V(LibraryMirror_invokeSetter, 4) \
277 V(TypeVariableMirror_owner, 1) \ 277 V(TypeVariableMirror_owner, 1) \
278 V(TypeVariableMirror_upper_bound, 1) \ 278 V(TypeVariableMirror_upper_bound, 1) \
279 V(DeclarationMirror_metadata, 1) \ 279 V(DeclarationMirror_metadata, 1) \
280 V(FunctionTypeMirror_call_method, 2) \ 280 V(FunctionTypeMirror_call_method, 2) \
281 V(FunctionTypeMirror_parameters, 2) \ 281 V(FunctionTypeMirror_parameters, 2) \
282 V(FunctionTypeMirror_return_type, 1) \ 282 V(FunctionTypeMirror_return_type, 1) \
283 V(MethodMirror_owner, 1) \ 283 V(MethodMirror_owner, 1) \
284 V(MethodMirror_parameters, 2) \ 284 V(MethodMirror_parameters, 2) \
285 V(MethodMirror_return_type, 1) \ 285 V(MethodMirror_return_type, 1) \
286 V(MethodMirror_source, 1) \
286 V(ParameterMirror_type, 2) \ 287 V(ParameterMirror_type, 2) \
287 V(TypedefMirror_referent, 1) \ 288 V(TypedefMirror_referent, 1) \
288 V(VariableMirror_type, 1) \ 289 V(VariableMirror_type, 1) \
289 V(GrowableObjectArray_allocate, 2) \ 290 V(GrowableObjectArray_allocate, 2) \
290 V(GrowableObjectArray_getIndexed, 2) \ 291 V(GrowableObjectArray_getIndexed, 2) \
291 V(GrowableObjectArray_setIndexed, 3) \ 292 V(GrowableObjectArray_setIndexed, 3) \
292 V(GrowableObjectArray_getLength, 1) \ 293 V(GrowableObjectArray_getLength, 1) \
293 V(GrowableObjectArray_getCapacity, 1) \ 294 V(GrowableObjectArray_getCapacity, 1) \
294 V(GrowableObjectArray_setLength, 2) \ 295 V(GrowableObjectArray_setLength, 2) \
295 V(GrowableObjectArray_setData, 2) \ 296 V(GrowableObjectArray_setData, 2) \
(...skipping 11 matching lines...) Expand all
307 static void DN_##name(Dart_NativeArguments args); 308 static void DN_##name(Dart_NativeArguments args);
308 309
309 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE) 310 BOOTSTRAP_NATIVE_LIST(DECLARE_BOOTSTRAP_NATIVE)
310 311
311 #undef DECLARE_BOOTSTRAP_NATIVE 312 #undef DECLARE_BOOTSTRAP_NATIVE
312 }; 313 };
313 314
314 } // namespace dart 315 } // namespace dart
315 316
316 #endif // VM_BOOTSTRAP_NATIVES_H_ 317 #endif // VM_BOOTSTRAP_NATIVES_H_
OLDNEW
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | runtime/vm/flow_graph_builder.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698