| 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 236 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 V(ColonSpace, ": ") \ | 247 V(ColonSpace, ": ") \ |
| 248 V(RParenArrow, ") => ") \ | 248 V(RParenArrow, ") => ") \ |
| 249 V(SpaceExtendsSpace, " extends ") \ | 249 V(SpaceExtendsSpace, " extends ") \ |
| 250 V(SwitchExpr, ":switch_expr") \ | 250 V(SwitchExpr, ":switch_expr") \ |
| 251 V(TwoNewlines, "\n\n") \ | 251 V(TwoNewlines, "\n\n") \ |
| 252 V(TwoSpaces, " ") \ | 252 V(TwoSpaces, " ") \ |
| 253 V(_instanceOf, "_instanceOf") \ | 253 V(_instanceOf, "_instanceOf") \ |
| 254 V(_as, "_as") \ | 254 V(_as, "_as") \ |
| 255 V(GetterPrefix, "get:") \ | 255 V(GetterPrefix, "get:") \ |
| 256 V(SetterPrefix, "set:") \ | 256 V(SetterPrefix, "set:") \ |
| 257 V(InitPrefix, "init:") \ |
| 257 V(PrivateGetterPrefix, "get:_") \ | 258 V(PrivateGetterPrefix, "get:_") \ |
| 258 V(PrivateSetterPrefix, "set:_") \ | 259 V(PrivateSetterPrefix, "set:_") \ |
| 259 V(_New, "_new") \ | 260 V(_New, "_new") \ |
| 260 V(DartScheme, "dart:") \ | 261 V(DartScheme, "dart:") \ |
| 261 V(DartSchemePrivate, "dart:_") \ | 262 V(DartSchemePrivate, "dart:_") \ |
| 262 V(DartNativeWrappers, "dart:nativewrappers") \ | 263 V(DartNativeWrappers, "dart:nativewrappers") \ |
| 263 V(DartAsync, "dart:async") \ | 264 V(DartAsync, "dart:async") \ |
| 264 V(DartCore, "dart:core") \ | 265 V(DartCore, "dart:core") \ |
| 265 V(DartCollection, "dart:collection") \ | 266 V(DartCollection, "dart:collection") \ |
| 266 V(DartCollectionDev, "dart:_collection-dev") \ | 267 V(DartCollectionDev, "dart:_collection-dev") \ |
| (...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 friend class SnapshotReader; | 489 friend class SnapshotReader; |
| 489 friend class SnapshotWriter; | 490 friend class SnapshotWriter; |
| 490 friend class ApiMessageReader; | 491 friend class ApiMessageReader; |
| 491 | 492 |
| 492 DISALLOW_COPY_AND_ASSIGN(Symbols); | 493 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 493 }; | 494 }; |
| 494 | 495 |
| 495 } // namespace dart | 496 } // namespace dart |
| 496 | 497 |
| 497 #endif // VM_SYMBOLS_H_ | 498 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |