| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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_ |
| OLD | NEW |