| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 V(DotValue, ".value") \ | 291 V(DotValue, ".value") \ |
| 292 V(FormatException, "FormatException") \ | 292 V(FormatException, "FormatException") \ |
| 293 V(UnsupportedError, "UnsupportedError") \ | 293 V(UnsupportedError, "UnsupportedError") \ |
| 294 V(StackOverflowError, "StackOverflowError") \ | 294 V(StackOverflowError, "StackOverflowError") \ |
| 295 V(OutOfMemoryError, "OutOfMemoryError") \ | 295 V(OutOfMemoryError, "OutOfMemoryError") \ |
| 296 V(NullThrownError, "NullThrownError") \ | 296 V(NullThrownError, "NullThrownError") \ |
| 297 V(IsolateSpawnException, "IsolateSpawnException") \ | 297 V(IsolateSpawnException, "IsolateSpawnException") \ |
| 298 V(BooleanExpression, "boolean expression") \ | 298 V(BooleanExpression, "boolean expression") \ |
| 299 V(MegamorphicMiss, "megamorphic_miss") \ | 299 V(MegamorphicMiss, "megamorphic_miss") \ |
| 300 V(CommaSpace, ", ") \ | 300 V(CommaSpace, ", ") \ |
| 301 V(ColonSpace, ": ") \ | |
| 302 V(RParenArrow, ") => ") \ | 301 V(RParenArrow, ") => ") \ |
| 303 V(SpaceExtendsSpace, " extends ") \ | 302 V(SpaceExtendsSpace, " extends ") \ |
| 304 V(SpaceWhereNewLine, " where\n") \ | 303 V(SpaceWhereNewLine, " where\n") \ |
| 305 V(SpaceIsFromSpace, " is from ") \ | 304 V(SpaceIsFromSpace, " is from ") \ |
| 306 V(InTypeCast, " in type cast") \ | 305 V(InTypeCast, " in type cast") \ |
| 307 V(TypeQuote, "type '") \ | 306 V(TypeQuote, "type '") \ |
| 308 V(QuoteIsNotASubtypeOf, "' is not a subtype of ") \ | 307 V(QuoteIsNotASubtypeOf, "' is not a subtype of ") \ |
| 309 V(SpaceOfSpace, " of ") \ | 308 V(SpaceOfSpace, " of ") \ |
| 310 V(SwitchExpr, ":switch_expr") \ | 309 V(SwitchExpr, ":switch_expr") \ |
| 311 V(TwoNewlines, "\n\n") \ | 310 V(TwoNewlines, "\n\n") \ |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 friend class Serializer; | 682 friend class Serializer; |
| 684 friend class Deserializer; | 683 friend class Deserializer; |
| 685 friend class ApiMessageReader; | 684 friend class ApiMessageReader; |
| 686 | 685 |
| 687 DISALLOW_COPY_AND_ASSIGN(Symbols); | 686 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 688 }; | 687 }; |
| 689 | 688 |
| 690 } // namespace dart | 689 } // namespace dart |
| 691 | 690 |
| 692 #endif // VM_SYMBOLS_H_ | 691 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |