OLD | NEW |
---|---|
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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
247 V(ArgumentError, "ArgumentError") \ | 247 V(ArgumentError, "ArgumentError") \ |
248 V(FormatException, "FormatException") \ | 248 V(FormatException, "FormatException") \ |
249 V(UnsupportedError, "UnsupportedError") \ | 249 V(UnsupportedError, "UnsupportedError") \ |
250 V(StackOverflowError, "StackOverflowError") \ | 250 V(StackOverflowError, "StackOverflowError") \ |
251 V(OutOfMemoryError, "OutOfMemoryError") \ | 251 V(OutOfMemoryError, "OutOfMemoryError") \ |
252 V(InternalError, "_InternalError") \ | 252 V(InternalError, "_InternalError") \ |
253 V(NullThrownError, "NullThrownError") \ | 253 V(NullThrownError, "NullThrownError") \ |
254 V(IsolateSpawnException, "IsolateSpawnException") \ | 254 V(IsolateSpawnException, "IsolateSpawnException") \ |
255 V(IsolateUnhandledException, "_IsolateUnhandledException") \ | 255 V(IsolateUnhandledException, "_IsolateUnhandledException") \ |
256 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ | 256 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ |
257 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ | |
Florian Schneider
2014/05/12 09:25:46
DBC: If you want to save time, try appending the n
| |
257 V(MirroredCompilationError, "MirroredCompilationError") \ | 258 V(MirroredCompilationError, "MirroredCompilationError") \ |
258 V(_setupFullStackTrace, "_setupFullStackTrace") \ | 259 V(_setupFullStackTrace, "_setupFullStackTrace") \ |
259 V(BooleanExpression, "boolean expression") \ | 260 V(BooleanExpression, "boolean expression") \ |
260 V(Malformed, "malformed") \ | 261 V(Malformed, "malformed") \ |
261 V(Malbounded, "malbounded") \ | 262 V(Malbounded, "malbounded") \ |
262 V(InstanceOf, "InstanceOf") \ | 263 V(InstanceOf, "InstanceOf") \ |
263 V(MegamorphicMiss, "megamorphic_miss") \ | 264 V(MegamorphicMiss, "megamorphic_miss") \ |
264 V(CommaSpace, ", ") \ | 265 V(CommaSpace, ", ") \ |
265 V(ColonSpace, ": ") \ | 266 V(ColonSpace, ": ") \ |
266 V(RParenArrow, ") => ") \ | 267 V(RParenArrow, ") => ") \ |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
531 friend class SnapshotReader; | 532 friend class SnapshotReader; |
532 friend class SnapshotWriter; | 533 friend class SnapshotWriter; |
533 friend class ApiMessageReader; | 534 friend class ApiMessageReader; |
534 | 535 |
535 DISALLOW_COPY_AND_ASSIGN(Symbols); | 536 DISALLOW_COPY_AND_ASSIGN(Symbols); |
536 }; | 537 }; |
537 | 538 |
538 } // namespace dart | 539 } // namespace dart |
539 | 540 |
540 #endif // VM_SYMBOLS_H_ | 541 #endif // VM_SYMBOLS_H_ |
OLD | NEW |