| 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 243 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 254 V(ColonSpace, ": ") \ | 254 V(ColonSpace, ": ") \ |
| 255 V(RParenArrow, ") => ") \ | 255 V(RParenArrow, ") => ") \ |
| 256 V(SpaceExtendsSpace, " extends ") \ | 256 V(SpaceExtendsSpace, " extends ") \ |
| 257 V(SwitchExpr, ":switch_expr") \ | 257 V(SwitchExpr, ":switch_expr") \ |
| 258 V(TwoNewlines, "\n\n") \ | 258 V(TwoNewlines, "\n\n") \ |
| 259 V(TwoSpaces, " ") \ | 259 V(TwoSpaces, " ") \ |
| 260 V(_instanceOf, "_instanceOf") \ | 260 V(_instanceOf, "_instanceOf") \ |
| 261 V(_as, "_as") \ | 261 V(_as, "_as") \ |
| 262 V(GetterPrefix, "get:") \ | 262 V(GetterPrefix, "get:") \ |
| 263 V(SetterPrefix, "set:") \ | 263 V(SetterPrefix, "set:") \ |
| 264 V(InitPrefix, "init:") \ |
| 264 V(PrivateGetterPrefix, "get:_") \ | 265 V(PrivateGetterPrefix, "get:_") \ |
| 265 V(PrivateSetterPrefix, "set:_") \ | 266 V(PrivateSetterPrefix, "set:_") \ |
| 266 V(_New, "_new") \ | 267 V(_New, "_new") \ |
| 267 V(DartScheme, "dart:") \ | 268 V(DartScheme, "dart:") \ |
| 268 V(DartSchemePrivate, "dart:_") \ | 269 V(DartSchemePrivate, "dart:_") \ |
| 269 V(DartNativeWrappers, "dart:nativewrappers") \ | 270 V(DartNativeWrappers, "dart:nativewrappers") \ |
| 270 V(DartAsync, "dart:async") \ | 271 V(DartAsync, "dart:async") \ |
| 271 V(DartCore, "dart:core") \ | 272 V(DartCore, "dart:core") \ |
| 272 V(DartCollection, "dart:collection") \ | 273 V(DartCollection, "dart:collection") \ |
| 273 V(DartCollectionDev, "dart:_collection-dev") \ | 274 V(DartCollectionDev, "dart:_collection-dev") \ |
| (...skipping 222 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 496 friend class SnapshotReader; | 497 friend class SnapshotReader; |
| 497 friend class SnapshotWriter; | 498 friend class SnapshotWriter; |
| 498 friend class ApiMessageReader; | 499 friend class ApiMessageReader; |
| 499 | 500 |
| 500 DISALLOW_COPY_AND_ASSIGN(Symbols); | 501 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 501 }; | 502 }; |
| 502 | 503 |
| 503 } // namespace dart | 504 } // namespace dart |
| 504 | 505 |
| 505 #endif // VM_SYMBOLS_H_ | 506 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |