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

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

Issue 12316116: Add functionality to get full stack trace when exceptions are thrown. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 9 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
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 166 matching lines...) Expand 10 before | Expand all | Expand 10 after
177 V(ArgumentError, "ArgumentError") \ 177 V(ArgumentError, "ArgumentError") \
178 V(FormatException, "FormatException") \ 178 V(FormatException, "FormatException") \
179 V(UnsupportedError, "UnsupportedError") \ 179 V(UnsupportedError, "UnsupportedError") \
180 V(StackOverflowError, "StackOverflowError") \ 180 V(StackOverflowError, "StackOverflowError") \
181 V(OutOfMemoryError, "OutOfMemoryError") \ 181 V(OutOfMemoryError, "OutOfMemoryError") \
182 V(InternalError, "InternalError") \ 182 V(InternalError, "InternalError") \
183 V(NullThrownError, "NullThrownError") \ 183 V(NullThrownError, "NullThrownError") \
184 V(IllegalJSRegExpException, "IllegalJSRegExpException") \ 184 V(IllegalJSRegExpException, "IllegalJSRegExpException") \
185 V(IsolateSpawnException, "IsolateSpawnException") \ 185 V(IsolateSpawnException, "IsolateSpawnException") \
186 V(IsolateUnhandledException, "IsolateUnhandledException") \ 186 V(IsolateUnhandledException, "IsolateUnhandledException") \
187 V(_setupFullStacktrace, "_setupFullStacktrace") \
187 V(BooleanExpression, "boolean expression") \ 188 V(BooleanExpression, "boolean expression") \
188 V(Malformed, "malformed") \ 189 V(Malformed, "malformed") \
189 V(InstanceOf, "InstanceOf") \ 190 V(InstanceOf, "InstanceOf") \
190 V(MegamorphicMiss, "megamorphic_miss") \ 191 V(MegamorphicMiss, "megamorphic_miss") \
191 V(CommaSpace, ", ") \ 192 V(CommaSpace, ", ") \
192 V(ColonSpace, ": ") \ 193 V(ColonSpace, ": ") \
193 V(RParenArrow, ") => ") \ 194 V(RParenArrow, ") => ") \
194 V(SpaceExtendsSpace, " extends ") \ 195 V(SpaceExtendsSpace, " extends ") \
195 V(PatchSpace, "patch ") \ 196 V(PatchSpace, "patch ") \
196 V(SwitchExpr, ":switch_expr") \ 197 V(SwitchExpr, ":switch_expr") \
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
404 friend class SnapshotReader; 405 friend class SnapshotReader;
405 friend class SnapshotWriter; 406 friend class SnapshotWriter;
406 friend class ApiMessageReader; 407 friend class ApiMessageReader;
407 408
408 DISALLOW_COPY_AND_ASSIGN(Symbols); 409 DISALLOW_COPY_AND_ASSIGN(Symbols);
409 }; 410 };
410 411
411 } // namespace dart 412 } // namespace dart
412 413
413 #endif // VM_SYMBOLS_H_ 414 #endif // VM_SYMBOLS_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698