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

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

Issue 93873014: Update isolate documentation. Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add isolateMessageException Created 7 years 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
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(_id, "_id") \ 234 V(_id, "_id") \
235 V(_get_or_create, "_get_or_create") \ 235 V(_get_or_create, "_get_or_create") \
236 V(RangeError, "RangeError") \ 236 V(RangeError, "RangeError") \
237 V(ArgumentError, "ArgumentError") \ 237 V(ArgumentError, "ArgumentError") \
238 V(FormatException, "FormatException") \ 238 V(FormatException, "FormatException") \
239 V(UnsupportedError, "UnsupportedError") \ 239 V(UnsupportedError, "UnsupportedError") \
240 V(StackOverflowError, "StackOverflowError") \ 240 V(StackOverflowError, "StackOverflowError") \
241 V(OutOfMemoryError, "OutOfMemoryError") \ 241 V(OutOfMemoryError, "OutOfMemoryError") \
242 V(InternalError, "InternalError") \ 242 V(InternalError, "InternalError") \
243 V(NullThrownError, "NullThrownError") \ 243 V(NullThrownError, "NullThrownError") \
244 V(IsolateMessageException, "IsolateMessageException") \
244 V(IsolateSpawnException, "IsolateSpawnException") \ 245 V(IsolateSpawnException, "IsolateSpawnException") \
245 V(IsolateUnhandledException, "_IsolateUnhandledException") \ 246 V(IsolateUnhandledException, "_IsolateUnhandledException") \
246 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ 247 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \
247 V(MirroredCompilationError, "MirroredCompilationError") \ 248 V(MirroredCompilationError, "MirroredCompilationError") \
248 V(_setupFullStackTrace, "_setupFullStackTrace") \ 249 V(_setupFullStackTrace, "_setupFullStackTrace") \
249 V(BooleanExpression, "boolean expression") \ 250 V(BooleanExpression, "boolean expression") \
250 V(Malformed, "malformed") \ 251 V(Malformed, "malformed") \
251 V(Malbounded, "malbounded") \ 252 V(Malbounded, "malbounded") \
252 V(InstanceOf, "InstanceOf") \ 253 V(InstanceOf, "InstanceOf") \
253 V(MegamorphicMiss, "megamorphic_miss") \ 254 V(MegamorphicMiss, "megamorphic_miss") \
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
508 friend class SnapshotReader; 509 friend class SnapshotReader;
509 friend class SnapshotWriter; 510 friend class SnapshotWriter;
510 friend class ApiMessageReader; 511 friend class ApiMessageReader;
511 512
512 DISALLOW_COPY_AND_ASSIGN(Symbols); 513 DISALLOW_COPY_AND_ASSIGN(Symbols);
513 }; 514 };
514 515
515 } // namespace dart 516 } // namespace dart
516 517
517 #endif // VM_SYMBOLS_H_ 518 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698