| 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/growable_array.h" | 8 #include "vm/growable_array.h" |
| 9 #include "vm/object.h" | 9 #include "vm/object.h" |
| 10 #include "vm/snapshot_ids.h" | 10 #include "vm/snapshot_ids.h" |
| (...skipping 287 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 298 V(RangeError, "RangeError") \ | 298 V(RangeError, "RangeError") \ |
| 299 V(DotRange, ".range") \ | 299 V(DotRange, ".range") \ |
| 300 V(ArgumentError, "ArgumentError") \ | 300 V(ArgumentError, "ArgumentError") \ |
| 301 V(DotValue, ".value") \ | 301 V(DotValue, ".value") \ |
| 302 V(FormatException, "FormatException") \ | 302 V(FormatException, "FormatException") \ |
| 303 V(UnsupportedError, "UnsupportedError") \ | 303 V(UnsupportedError, "UnsupportedError") \ |
| 304 V(StackOverflowError, "StackOverflowError") \ | 304 V(StackOverflowError, "StackOverflowError") \ |
| 305 V(OutOfMemoryError, "OutOfMemoryError") \ | 305 V(OutOfMemoryError, "OutOfMemoryError") \ |
| 306 V(NullThrownError, "NullThrownError") \ | 306 V(NullThrownError, "NullThrownError") \ |
| 307 V(IsolateSpawnException, "IsolateSpawnException") \ | 307 V(IsolateSpawnException, "IsolateSpawnException") \ |
| 308 V(IsolateUnhandledException, "_IsolateUnhandledException") \ | |
| 309 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ | 308 V(JavascriptIntegerOverflowError, "_JavascriptIntegerOverflowError") \ |
| 310 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ | 309 V(JavascriptCompatibilityError, "_JavascriptCompatibilityError") \ |
| 311 V(BooleanExpression, "boolean expression") \ | 310 V(BooleanExpression, "boolean expression") \ |
| 312 V(Malformed, "malformed") \ | 311 V(Malformed, "malformed") \ |
| 313 V(Malbounded, "malbounded") \ | 312 V(Malbounded, "malbounded") \ |
| 314 V(MegamorphicMiss, "megamorphic_miss") \ | 313 V(MegamorphicMiss, "megamorphic_miss") \ |
| 315 V(CommaSpace, ", ") \ | 314 V(CommaSpace, ", ") \ |
| 316 V(ColonSpace, ": ") \ | 315 V(ColonSpace, ": ") \ |
| 317 V(RParenArrow, ") => ") \ | 316 V(RParenArrow, ") => ") \ |
| 318 V(SpaceExtendsSpace, " extends ") \ | 317 V(SpaceExtendsSpace, " extends ") \ |
| (...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 656 friend class SnapshotReader; | 655 friend class SnapshotReader; |
| 657 friend class SnapshotWriter; | 656 friend class SnapshotWriter; |
| 658 friend class ApiMessageReader; | 657 friend class ApiMessageReader; |
| 659 | 658 |
| 660 DISALLOW_COPY_AND_ASSIGN(Symbols); | 659 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 661 }; | 660 }; |
| 662 | 661 |
| 663 } // namespace dart | 662 } // namespace dart |
| 664 | 663 |
| 665 #endif // VM_SYMBOLS_H_ | 664 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |