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

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

Issue 196443009: - First step in refactoring ports with the goal of moving (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 8 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/vm/dart_entry.cc ('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 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 V(AllocateInvocationMirror, "_allocateInvocationMirror") \ 234 V(AllocateInvocationMirror, "_allocateInvocationMirror") \
235 V(toString, "toString") \ 235 V(toString, "toString") \
236 V(_RawReceivePortImpl, "_RawReceivePortImpl") \ 236 V(_RawReceivePortImpl, "_RawReceivePortImpl") \
237 V(_lookupReceivePort, "_lookupReceivePort") \ 237 V(_lookupReceivePort, "_lookupReceivePort") \
238 V(_handleMessage, "_handleMessage") \ 238 V(_handleMessage, "_handleMessage") \
239 V(_SendPortImpl, "_SendPortImpl") \ 239 V(_SendPortImpl, "_SendPortImpl") \
240 V(_create, "_create") \ 240 V(_create, "_create") \
241 V(DotCreate, "._create") \ 241 V(DotCreate, "._create") \
242 V(DotWithType, "._withType") \ 242 V(DotWithType, "._withType") \
243 V(_id, "_id") \ 243 V(_id, "_id") \
244 V(_get_or_create, "_get_or_create") \ 244 V(_get, "_get") \
245 V(RangeError, "RangeError") \ 245 V(RangeError, "RangeError") \
246 V(ArgumentError, "ArgumentError") \ 246 V(ArgumentError, "ArgumentError") \
247 V(FormatException, "FormatException") \ 247 V(FormatException, "FormatException") \
248 V(UnsupportedError, "UnsupportedError") \ 248 V(UnsupportedError, "UnsupportedError") \
249 V(StackOverflowError, "StackOverflowError") \ 249 V(StackOverflowError, "StackOverflowError") \
250 V(OutOfMemoryError, "OutOfMemoryError") \ 250 V(OutOfMemoryError, "OutOfMemoryError") \
251 V(InternalError, "_InternalError") \ 251 V(InternalError, "_InternalError") \
252 V(NullThrownError, "NullThrownError") \ 252 V(NullThrownError, "NullThrownError") \
253 V(IsolateSpawnException, "IsolateSpawnException") \ 253 V(IsolateSpawnException, "IsolateSpawnException") \
254 V(IsolateUnhandledException, "_IsolateUnhandledException") \ 254 V(IsolateUnhandledException, "_IsolateUnhandledException") \
(...skipping 269 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 friend class SnapshotReader; 524 friend class SnapshotReader;
525 friend class SnapshotWriter; 525 friend class SnapshotWriter;
526 friend class ApiMessageReader; 526 friend class ApiMessageReader;
527 527
528 DISALLOW_COPY_AND_ASSIGN(Symbols); 528 DISALLOW_COPY_AND_ASSIGN(Symbols);
529 }; 529 };
530 530
531 } // namespace dart 531 } // namespace dart
532 532
533 #endif // VM_SYMBOLS_H_ 533 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/dart_entry.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698