| 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 309 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 320 V(TwoNewlines, "\n\n") \ | 320 V(TwoNewlines, "\n\n") \ |
| 321 V(TwoSpaces, " ") \ | 321 V(TwoSpaces, " ") \ |
| 322 V(_instanceOf, "_instanceOf") \ | 322 V(_instanceOf, "_instanceOf") \ |
| 323 V(_instanceOfSmi, "_instanceOfSmi") \ | 323 V(_instanceOfSmi, "_instanceOfSmi") \ |
| 324 V(_instanceOfNum, "_instanceOfNum") \ | 324 V(_instanceOfNum, "_instanceOfNum") \ |
| 325 V(_instanceOfInt, "_instanceOfInt") \ | 325 V(_instanceOfInt, "_instanceOfInt") \ |
| 326 V(_instanceOfDouble, "_instanceOfDouble") \ | 326 V(_instanceOfDouble, "_instanceOfDouble") \ |
| 327 V(_instanceOfString, "_instanceOfString") \ | 327 V(_instanceOfString, "_instanceOfString") \ |
| 328 V(_as, "_as") \ | 328 V(_as, "_as") \ |
| 329 V(GetterPrefix, "get:") \ | 329 V(GetterPrefix, "get:") \ |
| 330 V(ClosurizePrefix, "get:#") \ |
| 330 V(SetterPrefix, "set:") \ | 331 V(SetterPrefix, "set:") \ |
| 331 V(InitPrefix, "init:") \ | 332 V(InitPrefix, "init:") \ |
| 332 V(_New, "_new") \ | 333 V(_New, "_new") \ |
| 333 V(Index, "index") \ | 334 V(Index, "index") \ |
| 334 V(DartScheme, "dart:") \ | 335 V(DartScheme, "dart:") \ |
| 335 V(DartSchemePrivate, "dart:_") \ | 336 V(DartSchemePrivate, "dart:_") \ |
| 336 V(DartNativeWrappers, "dart:nativewrappers") \ | 337 V(DartNativeWrappers, "dart:nativewrappers") \ |
| 337 V(DartNativeWrappersLibName, "dart.nativewrappers") \ | 338 V(DartNativeWrappersLibName, "dart.nativewrappers") \ |
| 338 V(DartCore, "dart:core") \ | 339 V(DartCore, "dart:core") \ |
| 339 V(DartCollection, "dart:collection") \ | 340 V(DartCollection, "dart:collection") \ |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 655 friend class SnapshotReader; | 656 friend class SnapshotReader; |
| 656 friend class SnapshotWriter; | 657 friend class SnapshotWriter; |
| 657 friend class ApiMessageReader; | 658 friend class ApiMessageReader; |
| 658 | 659 |
| 659 DISALLOW_COPY_AND_ASSIGN(Symbols); | 660 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 660 }; | 661 }; |
| 661 | 662 |
| 662 } // namespace dart | 663 } // namespace dart |
| 663 | 664 |
| 664 #endif // VM_SYMBOLS_H_ | 665 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |