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

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 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 V(_Bigint, "_Bigint") \ 110 V(_Bigint, "_Bigint") \
111 V(_Double, "_Double") \ 111 V(_Double, "_Double") \
112 V(Bool, "bool") \ 112 V(Bool, "bool") \
113 V(ObjectArray, "_ObjectArray") \ 113 V(ObjectArray, "_ObjectArray") \
114 V(GrowableObjectArray, "_GrowableObjectArray") \ 114 V(GrowableObjectArray, "_GrowableObjectArray") \
115 V(ImmutableArray, "_ImmutableArray") \ 115 V(ImmutableArray, "_ImmutableArray") \
116 V(OneByteString, "_OneByteString") \ 116 V(OneByteString, "_OneByteString") \
117 V(TwoByteString, "_TwoByteString") \ 117 V(TwoByteString, "_TwoByteString") \
118 V(ExternalOneByteString, "_ExternalOneByteString") \ 118 V(ExternalOneByteString, "_ExternalOneByteString") \
119 V(ExternalTwoByteString, "_ExternalTwoByteString") \ 119 V(ExternalTwoByteString, "_ExternalTwoByteString") \
120 V(Stacktrace, "Stacktrace") \ 120 V(StackTrace, "StackTrace") \
121 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \ 121 V(JSSyntaxRegExp, "_JSSyntaxRegExp") \
122 V(Object, "Object") \ 122 V(Object, "Object") \
123 V(Int, "int") \ 123 V(Int, "int") \
124 V(Double, "double") \ 124 V(Double, "double") \
125 V(_Float32x4, "_Float32x4") \ 125 V(_Float32x4, "_Float32x4") \
126 V(_Uint32x4, "_Uint32x4") \ 126 V(_Uint32x4, "_Uint32x4") \
127 V(Float32x4, "Float32x4") \ 127 V(Float32x4, "Float32x4") \
128 V(Uint32x4, "Uint32x4") \ 128 V(Uint32x4, "Uint32x4") \
129 V(Int8List, "Int8List") \ 129 V(Int8List, "Int8List") \
130 V(Uint8List, "Uint8List") \ 130 V(Uint8List, "Uint8List") \
(...skipping 46 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