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

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

Issue 20208002: Inline MethodMirror creation (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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
« runtime/lib/mirrors.cc ('K') | « runtime/vm/bootstrap_natives.h ('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 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 V(DartIsolate, "dart:isolate") \ 260 V(DartIsolate, "dart:isolate") \
261 V(DartJson, "dart:json") \ 261 V(DartJson, "dart:json") \
262 V(DartMath, "dart:math") \ 262 V(DartMath, "dart:math") \
263 V(DartMirrors, "dart:mirrors") \ 263 V(DartMirrors, "dart:mirrors") \
264 V(DartTypedData, "dart:typed_data") \ 264 V(DartTypedData, "dart:typed_data") \
265 V(DartUtf, "dart:utf") \ 265 V(DartUtf, "dart:utf") \
266 V(_Random, "_Random") \ 266 V(_Random, "_Random") \
267 V(_state, "_state") \ 267 V(_state, "_state") \
268 V(_A, "_A") \ 268 V(_A, "_A") \
269 V(_SpecialTypeMirrorImpl, "_SpecialTypeMirrorImpl") \ 269 V(_SpecialTypeMirrorImpl, "_SpecialTypeMirrorImpl") \
270 V(_LocalMethodMirrorImpl, "_LocalMethodMirrorImpl") \
270 V(_LocalVariableMirrorImpl, "_LocalVariableMirrorImpl") \ 271 V(_LocalVariableMirrorImpl, "_LocalVariableMirrorImpl") \
271 V(_LocalParameterMirrorImpl, "_LocalParameterMirrorImpl") \ 272 V(_LocalParameterMirrorImpl, "_LocalParameterMirrorImpl") \
272 273
273 274
274 // Contains a list of frequently used strings in a canonicalized form. This 275 // Contains a list of frequently used strings in a canonicalized form. This
275 // list is kept in the vm_isolate in order to share the copy across isolates 276 // list is kept in the vm_isolate in order to share the copy across isolates
276 // without having to maintain copies in each isolate. 277 // without having to maintain copies in each isolate.
277 class Symbols : public AllStatic { 278 class Symbols : public AllStatic {
278 public: 279 public:
279 enum { kMaxOneCharCodeSymbol = 0xFF }; 280 enum { kMaxOneCharCodeSymbol = 0xFF };
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after
467 friend class SnapshotReader; 468 friend class SnapshotReader;
468 friend class SnapshotWriter; 469 friend class SnapshotWriter;
469 friend class ApiMessageReader; 470 friend class ApiMessageReader;
470 471
471 DISALLOW_COPY_AND_ASSIGN(Symbols); 472 DISALLOW_COPY_AND_ASSIGN(Symbols);
472 }; 473 };
473 474
474 } // namespace dart 475 } // namespace dart
475 476
476 #endif // VM_SYMBOLS_H_ 477 #endif // VM_SYMBOLS_H_
OLDNEW
« runtime/lib/mirrors.cc ('K') | « runtime/vm/bootstrap_natives.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698