| 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 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 214 V(IsolateUnhandledException, "IsolateUnhandledException") \ | 214 V(IsolateUnhandledException, "IsolateUnhandledException") \ |
| 215 V(_setupFullStackTrace, "_setupFullStackTrace") \ | 215 V(_setupFullStackTrace, "_setupFullStackTrace") \ |
| 216 V(BooleanExpression, "boolean expression") \ | 216 V(BooleanExpression, "boolean expression") \ |
| 217 V(Malformed, "malformed") \ | 217 V(Malformed, "malformed") \ |
| 218 V(InstanceOf, "InstanceOf") \ | 218 V(InstanceOf, "InstanceOf") \ |
| 219 V(MegamorphicMiss, "megamorphic_miss") \ | 219 V(MegamorphicMiss, "megamorphic_miss") \ |
| 220 V(CommaSpace, ", ") \ | 220 V(CommaSpace, ", ") \ |
| 221 V(ColonSpace, ": ") \ | 221 V(ColonSpace, ": ") \ |
| 222 V(RParenArrow, ") => ") \ | 222 V(RParenArrow, ") => ") \ |
| 223 V(SpaceExtendsSpace, " extends ") \ | 223 V(SpaceExtendsSpace, " extends ") \ |
| 224 V(PatchSpace, "patch ") \ | |
| 225 V(SwitchExpr, ":switch_expr") \ | 224 V(SwitchExpr, ":switch_expr") \ |
| 226 V(TwoNewlines, "\n\n") \ | 225 V(TwoNewlines, "\n\n") \ |
| 227 V(TwoSpaces, " ") \ | 226 V(TwoSpaces, " ") \ |
| 228 V(_instanceOf, "_instanceOf") \ | 227 V(_instanceOf, "_instanceOf") \ |
| 229 V(_as, "_as") \ | 228 V(_as, "_as") \ |
| 230 V(PrivateGetterPrefix, "get:_") \ | 229 V(PrivateGetterPrefix, "get:_") \ |
| 231 V(PrivateSetterPrefix, "set:_") \ | 230 V(PrivateSetterPrefix, "set:_") \ |
| 232 V(_New, "_new") \ | 231 V(_New, "_new") \ |
| 233 V(DartScheme, "dart:") \ | 232 V(DartScheme, "dart:") \ |
| 234 V(DartSchemePrivate, "dart:_") \ | 233 V(DartSchemePrivate, "dart:_") \ |
| (...skipping 202 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 437 friend class SnapshotReader; | 436 friend class SnapshotReader; |
| 438 friend class SnapshotWriter; | 437 friend class SnapshotWriter; |
| 439 friend class ApiMessageReader; | 438 friend class ApiMessageReader; |
| 440 | 439 |
| 441 DISALLOW_COPY_AND_ASSIGN(Symbols); | 440 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 442 }; | 441 }; |
| 443 | 442 |
| 444 } // namespace dart | 443 } // namespace dart |
| 445 | 444 |
| 446 #endif // VM_SYMBOLS_H_ | 445 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |