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

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

Issue 63393003: Drop "Impl" suffix from local mirror class names. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 1 month 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') | no next file » | 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_SYMBOLS_H_ 5 #ifndef VM_SYMBOLS_H_
6 #define VM_SYMBOLS_H_ 6 #define VM_SYMBOLS_H_
7 7
8 #include "vm/object.h" 8 #include "vm/object.h"
9 #include "vm/snapshot_ids.h" 9 #include "vm/snapshot_ids.h"
10 10
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 V(DartCollectionDev, "dart:_collection-dev") \ 275 V(DartCollectionDev, "dart:_collection-dev") \
276 V(DartConvert, "dart:convert") \ 276 V(DartConvert, "dart:convert") \
277 V(DartIsolate, "dart:isolate") \ 277 V(DartIsolate, "dart:isolate") \
278 V(DartMath, "dart:math") \ 278 V(DartMath, "dart:math") \
279 V(DartMirrors, "dart:mirrors") \ 279 V(DartMirrors, "dart:mirrors") \
280 V(DartTypedData, "dart:typed_data") \ 280 V(DartTypedData, "dart:typed_data") \
281 V(_Random, "_Random") \ 281 V(_Random, "_Random") \
282 V(_state, "_state") \ 282 V(_state, "_state") \
283 V(_A, "_A") \ 283 V(_A, "_A") \
284 V(_stackTrace, "_stackTrace") \ 284 V(_stackTrace, "_stackTrace") \
285 V(_SpecialTypeMirrorImpl, "_SpecialTypeMirrorImpl") \ 285 V(_SpecialTypeMirror, "_SpecialTypeMirror") \
286 V(_LocalClassMirrorImpl, "_LocalClassMirrorImpl") \ 286 V(_LocalClassMirror, "_LocalClassMirror") \
287 V(_LocalFunctionTypeMirrorImpl, "_LocalFunctionTypeMirrorImpl") \ 287 V(_LocalFunctionTypeMirror, "_LocalFunctionTypeMirror") \
288 V(_LocalLibraryMirrorImpl, "_LocalLibraryMirrorImpl") \ 288 V(_LocalLibraryMirror, "_LocalLibraryMirror") \
289 V(_LocalMethodMirrorImpl, "_LocalMethodMirrorImpl") \ 289 V(_LocalMethodMirror, "_LocalMethodMirror") \
290 V(_LocalVariableMirrorImpl, "_LocalVariableMirrorImpl") \ 290 V(_LocalVariableMirror, "_LocalVariableMirror") \
291 V(_LocalParameterMirrorImpl, "_LocalParameterMirrorImpl") \ 291 V(_LocalParameterMirror, "_LocalParameterMirror") \
292 V(_LocalIsolateMirrorImpl, "_LocalIsolateMirrorImpl") \ 292 V(_LocalIsolateMirror, "_LocalIsolateMirror") \
293 V(_LocalMirrorSystemImpl, "_LocalMirrorSystemImpl") \ 293 V(_LocalMirrorSystem, "_LocalMirrorSystem") \
294 V(_LocalTypedefMirrorImpl, "_LocalTypedefMirrorImpl") \ 294 V(_LocalTypedefMirror, "_LocalTypedefMirror") \
295 V(_LocalTypeVariableMirrorImpl, "_LocalTypeVariableMirrorImpl") \ 295 V(_LocalTypeVariableMirror, "_LocalTypeVariableMirror") \
296 V(hashCode, "get:hashCode") \ 296 V(hashCode, "get:hashCode") \
297 V(_leftShiftWithMask32, "_leftShiftWithMask32") \ 297 V(_leftShiftWithMask32, "_leftShiftWithMask32") \
298 V(OptimizedOut, "<optimized out>") \ 298 V(OptimizedOut, "<optimized out>") \
299 V(ClassId, "get:_classId") \ 299 V(ClassId, "get:_classId") \
300 300
301 301
302 // Contains a list of frequently used strings in a canonicalized form. This 302 // Contains a list of frequently used strings in a canonicalized form. This
303 // list is kept in the vm_isolate in order to share the copy across isolates 303 // list is kept in the vm_isolate in order to share the copy across isolates
304 // without having to maintain copies in each isolate. 304 // without having to maintain copies in each isolate.
305 class Symbols : public AllStatic { 305 class Symbols : public AllStatic {
(...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 friend class SnapshotReader; 508 friend class SnapshotReader;
509 friend class SnapshotWriter; 509 friend class SnapshotWriter;
510 friend class ApiMessageReader; 510 friend class ApiMessageReader;
511 511
512 DISALLOW_COPY_AND_ASSIGN(Symbols); 512 DISALLOW_COPY_AND_ASSIGN(Symbols);
513 }; 513 };
514 514
515 } // namespace dart 515 } // namespace dart
516 516
517 #endif // VM_SYMBOLS_H_ 517 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/lib/mirrors_impl.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698