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

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

Issue 939773003: - Simplify collection of stack traces. If we determine that a stack (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 10 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/raw_object.h ('k') | tests/language/error_stacktrace_test.dart » ('j') | 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after
278 V(ArgumentError, "ArgumentError") \ 278 V(ArgumentError, "ArgumentError") \
279 V(FormatException, "FormatException") \ 279 V(FormatException, "FormatException") \
280 V(UnsupportedError, "UnsupportedError") \ 280 V(UnsupportedError, "UnsupportedError") \
281 V(StackOverflowError, "StackOverflowError") \ 281 V(StackOverflowError, "StackOverflowError") \
282 V(OutOfMemoryError, "OutOfMemoryError") \ 282 V(OutOfMemoryError, "OutOfMemoryError") \
283 V(NullThrownError, "NullThrownError") \ 283 V(NullThrownError, "NullThrownError") \
284 V(IsolateSpawnException, "IsolateSpawnException") \ 284 V(IsolateSpawnException, "IsolateSpawnException") \
285 V(IsolateUnhandledException, "_IsolateUnhandledException") \ 285 V(IsolateUnhandledException, "_IsolateUnhandledException") \
286 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ 286 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \
287 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ 287 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \
288 V(_setupFullStackTrace, "_setupFullStackTrace") \
289 V(BooleanExpression, "boolean expression") \ 288 V(BooleanExpression, "boolean expression") \
290 V(Malformed, "malformed") \ 289 V(Malformed, "malformed") \
291 V(Malbounded, "malbounded") \ 290 V(Malbounded, "malbounded") \
292 V(MegamorphicMiss, "megamorphic_miss") \ 291 V(MegamorphicMiss, "megamorphic_miss") \
293 V(CommaSpace, ", ") \ 292 V(CommaSpace, ", ") \
294 V(ColonSpace, ": ") \ 293 V(ColonSpace, ": ") \
295 V(RParenArrow, ") => ") \ 294 V(RParenArrow, ") => ") \
296 V(SpaceExtendsSpace, " extends ") \ 295 V(SpaceExtendsSpace, " extends ") \
297 V(SwitchExpr, ":switch_expr") \ 296 V(SwitchExpr, ":switch_expr") \
298 V(TwoNewlines, "\n\n") \ 297 V(TwoNewlines, "\n\n") \
(...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 friend class SnapshotReader; 581 friend class SnapshotReader;
583 friend class SnapshotWriter; 582 friend class SnapshotWriter;
584 friend class ApiMessageReader; 583 friend class ApiMessageReader;
585 584
586 DISALLOW_COPY_AND_ASSIGN(Symbols); 585 DISALLOW_COPY_AND_ASSIGN(Symbols);
587 }; 586 };
588 587
589 } // namespace dart 588 } // namespace dart
590 589
591 #endif // VM_SYMBOLS_H_ 590 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/raw_object.h ('k') | tests/language/error_stacktrace_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698