| 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 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 232 V(MegamorphicMiss, "megamorphic_miss") \ | 232 V(MegamorphicMiss, "megamorphic_miss") \ |
| 233 V(CommaSpace, ", ") \ | 233 V(CommaSpace, ", ") \ |
| 234 V(ColonSpace, ": ") \ | 234 V(ColonSpace, ": ") \ |
| 235 V(RParenArrow, ") => ") \ | 235 V(RParenArrow, ") => ") \ |
| 236 V(SpaceExtendsSpace, " extends ") \ | 236 V(SpaceExtendsSpace, " extends ") \ |
| 237 V(SwitchExpr, ":switch_expr") \ | 237 V(SwitchExpr, ":switch_expr") \ |
| 238 V(TwoNewlines, "\n\n") \ | 238 V(TwoNewlines, "\n\n") \ |
| 239 V(TwoSpaces, " ") \ | 239 V(TwoSpaces, " ") \ |
| 240 V(_instanceOf, "_instanceOf") \ | 240 V(_instanceOf, "_instanceOf") \ |
| 241 V(_as, "_as") \ | 241 V(_as, "_as") \ |
| 242 V(GetterPrefix, "get:") \ |
| 243 V(SetterPrefix, "set:") \ |
| 242 V(PrivateGetterPrefix, "get:_") \ | 244 V(PrivateGetterPrefix, "get:_") \ |
| 243 V(PrivateSetterPrefix, "set:_") \ | 245 V(PrivateSetterPrefix, "set:_") \ |
| 244 V(_New, "_new") \ | 246 V(_New, "_new") \ |
| 245 V(DartScheme, "dart:") \ | 247 V(DartScheme, "dart:") \ |
| 246 V(DartSchemePrivate, "dart:_") \ | 248 V(DartSchemePrivate, "dart:_") \ |
| 247 V(DartNativeWrappers, "dart:nativewrappers") \ | 249 V(DartNativeWrappers, "dart:nativewrappers") \ |
| 248 V(DartAsync, "dart:async") \ | 250 V(DartAsync, "dart:async") \ |
| 249 V(DartCore, "dart:core") \ | 251 V(DartCore, "dart:core") \ |
| 250 V(DartCollection, "dart:collection") \ | 252 V(DartCollection, "dart:collection") \ |
| 251 V(DartCollectionDev, "dart:_collection-dev") \ | 253 V(DartCollectionDev, "dart:_collection-dev") \ |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 455 friend class SnapshotReader; | 457 friend class SnapshotReader; |
| 456 friend class SnapshotWriter; | 458 friend class SnapshotWriter; |
| 457 friend class ApiMessageReader; | 459 friend class ApiMessageReader; |
| 458 | 460 |
| 459 DISALLOW_COPY_AND_ASSIGN(Symbols); | 461 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 460 }; | 462 }; |
| 461 | 463 |
| 462 } // namespace dart | 464 } // namespace dart |
| 463 | 465 |
| 464 #endif // VM_SYMBOLS_H_ | 466 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |