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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
246 V(_as, "_as") \ | 246 V(_as, "_as") \ |
247 V(GetterPrefix, "get:") \ | 247 V(GetterPrefix, "get:") \ |
248 V(SetterPrefix, "set:") \ | 248 V(SetterPrefix, "set:") \ |
249 V(PrivateGetterPrefix, "get:_") \ | 249 V(PrivateGetterPrefix, "get:_") \ |
250 V(PrivateSetterPrefix, "set:_") \ | 250 V(PrivateSetterPrefix, "set:_") \ |
251 V(_New, "_new") \ | 251 V(_New, "_new") \ |
252 V(DartScheme, "dart:") \ | 252 V(DartScheme, "dart:") \ |
253 V(DartSchemePrivate, "dart:_") \ | 253 V(DartSchemePrivate, "dart:_") \ |
254 V(DartNativeWrappers, "dart:nativewrappers") \ | 254 V(DartNativeWrappers, "dart:nativewrappers") \ |
255 V(DartAsync, "dart:async") \ | 255 V(DartAsync, "dart:async") \ |
256 V(DartCodec, "dart:codec") \ | |
257 V(DartCore, "dart:core") \ | 256 V(DartCore, "dart:core") \ |
258 V(DartCollection, "dart:collection") \ | 257 V(DartCollection, "dart:collection") \ |
259 V(DartCollectionDev, "dart:_collection-dev") \ | 258 V(DartCollectionDev, "dart:_collection-dev") \ |
260 V(DartConvert, "dart:convert") \ | 259 V(DartConvert, "dart:convert") \ |
261 V(DartIsolate, "dart:isolate") \ | 260 V(DartIsolate, "dart:isolate") \ |
262 V(DartJson, "dart:json") \ | 261 V(DartJson, "dart:json") \ |
263 V(DartMath, "dart:math") \ | 262 V(DartMath, "dart:math") \ |
264 V(DartMirrors, "dart:mirrors") \ | 263 V(DartMirrors, "dart:mirrors") \ |
265 V(DartTypedData, "dart:typed_data") \ | 264 V(DartTypedData, "dart:typed_data") \ |
266 V(DartUtf, "dart:utf") \ | 265 V(DartUtf, "dart:utf") \ |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
466 friend class SnapshotReader; | 465 friend class SnapshotReader; |
467 friend class SnapshotWriter; | 466 friend class SnapshotWriter; |
468 friend class ApiMessageReader; | 467 friend class ApiMessageReader; |
469 | 468 |
470 DISALLOW_COPY_AND_ASSIGN(Symbols); | 469 DISALLOW_COPY_AND_ASSIGN(Symbols); |
471 }; | 470 }; |
472 | 471 |
473 } // namespace dart | 472 } // namespace dart |
474 | 473 |
475 #endif // VM_SYMBOLS_H_ | 474 #endif // VM_SYMBOLS_H_ |
OLD | NEW |