| 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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 327 V(_instanceOfSmi, "_instanceOfSmi") \ | 327 V(_instanceOfSmi, "_instanceOfSmi") \ |
| 328 V(_instanceOfNum, "_instanceOfNum") \ | 328 V(_instanceOfNum, "_instanceOfNum") \ |
| 329 V(_instanceOfInt, "_instanceOfInt") \ | 329 V(_instanceOfInt, "_instanceOfInt") \ |
| 330 V(_instanceOfDouble, "_instanceOfDouble") \ | 330 V(_instanceOfDouble, "_instanceOfDouble") \ |
| 331 V(_instanceOfString, "_instanceOfString") \ | 331 V(_instanceOfString, "_instanceOfString") \ |
| 332 V(_as, "_as") \ | 332 V(_as, "_as") \ |
| 333 V(GetterPrefix, "get:") \ | 333 V(GetterPrefix, "get:") \ |
| 334 V(ClosurizePrefix, "get:#") \ | 334 V(ClosurizePrefix, "get:#") \ |
| 335 V(SetterPrefix, "set:") \ | 335 V(SetterPrefix, "set:") \ |
| 336 V(InitPrefix, "init:") \ | 336 V(InitPrefix, "init:") \ |
| 337 V(_New, "_new") \ | |
| 338 V(Index, "index") \ | 337 V(Index, "index") \ |
| 339 V(DartScheme, "dart:") \ | 338 V(DartScheme, "dart:") \ |
| 340 V(DartSchemePrivate, "dart:_") \ | 339 V(DartSchemePrivate, "dart:_") \ |
| 341 V(DartNativeWrappers, "dart:nativewrappers") \ | 340 V(DartNativeWrappers, "dart:nativewrappers") \ |
| 342 V(DartNativeWrappersLibName, "dart.nativewrappers") \ | 341 V(DartNativeWrappersLibName, "dart.nativewrappers") \ |
| 343 V(DartCore, "dart:core") \ | 342 V(DartCore, "dart:core") \ |
| 344 V(DartCollection, "dart:collection") \ | 343 V(DartCollection, "dart:collection") \ |
| 345 V(DartDeveloper, "dart:developer") \ | 344 V(DartDeveloper, "dart:developer") \ |
| 346 V(DartInternal, "dart:_internal") \ | 345 V(DartInternal, "dart:_internal") \ |
| 347 V(DartIsolate, "dart:isolate") \ | 346 V(DartIsolate, "dart:isolate") \ |
| (...skipping 322 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 670 friend class SnapshotReader; | 669 friend class SnapshotReader; |
| 671 friend class SnapshotWriter; | 670 friend class SnapshotWriter; |
| 672 friend class ApiMessageReader; | 671 friend class ApiMessageReader; |
| 673 | 672 |
| 674 DISALLOW_COPY_AND_ASSIGN(Symbols); | 673 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 675 }; | 674 }; |
| 676 | 675 |
| 677 } // namespace dart | 676 } // namespace dart |
| 678 | 677 |
| 679 #endif // VM_SYMBOLS_H_ | 678 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |