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

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

Issue 20851002: Create the local MirrorSystem with internal code. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 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') | 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 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
265 V(DartTypedData, "dart:typed_data") \ 265 V(DartTypedData, "dart:typed_data") \
266 V(DartUtf, "dart:utf") \ 266 V(DartUtf, "dart:utf") \
267 V(_Random, "_Random") \ 267 V(_Random, "_Random") \
268 V(_state, "_state") \ 268 V(_state, "_state") \
269 V(_A, "_A") \ 269 V(_A, "_A") \
270 V(_stackTrace, "_stackTrace") \ 270 V(_stackTrace, "_stackTrace") \
271 V(_SpecialTypeMirrorImpl, "_SpecialTypeMirrorImpl") \ 271 V(_SpecialTypeMirrorImpl, "_SpecialTypeMirrorImpl") \
272 V(_LocalMethodMirrorImpl, "_LocalMethodMirrorImpl") \ 272 V(_LocalMethodMirrorImpl, "_LocalMethodMirrorImpl") \
273 V(_LocalVariableMirrorImpl, "_LocalVariableMirrorImpl") \ 273 V(_LocalVariableMirrorImpl, "_LocalVariableMirrorImpl") \
274 V(_LocalParameterMirrorImpl, "_LocalParameterMirrorImpl") \ 274 V(_LocalParameterMirrorImpl, "_LocalParameterMirrorImpl") \
275 V(_LocalIsolateMirrorImpl, "_LocalIsolateMirrorImpl") \
276 V(_LocalMirrorSystemImpl, "_LocalMirrorSystemImpl") \
275 277
276 278
277 // Contains a list of frequently used strings in a canonicalized form. This 279 // Contains a list of frequently used strings in a canonicalized form. This
278 // list is kept in the vm_isolate in order to share the copy across isolates 280 // list is kept in the vm_isolate in order to share the copy across isolates
279 // without having to maintain copies in each isolate. 281 // without having to maintain copies in each isolate.
280 class Symbols : public AllStatic { 282 class Symbols : public AllStatic {
281 public: 283 public:
282 enum { kMaxOneCharCodeSymbol = 0xFF }; 284 enum { kMaxOneCharCodeSymbol = 0xFF };
283 285
284 // List of strings that are pre created in the vm isolate. 286 // List of strings that are pre created in the vm isolate.
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 friend class SnapshotReader; 472 friend class SnapshotReader;
471 friend class SnapshotWriter; 473 friend class SnapshotWriter;
472 friend class ApiMessageReader; 474 friend class ApiMessageReader;
473 475
474 DISALLOW_COPY_AND_ASSIGN(Symbols); 476 DISALLOW_COPY_AND_ASSIGN(Symbols);
475 }; 477 };
476 478
477 } // namespace dart 479 } // namespace dart
478 480
479 #endif // VM_SYMBOLS_H_ 481 #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