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 RUNTIME_VM_SYMBOLS_H_ | 5 #ifndef RUNTIME_VM_SYMBOLS_H_ |
6 #define RUNTIME_VM_SYMBOLS_H_ | 6 #define RUNTIME_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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 V(TypeQuote, "type '") \ | 340 V(TypeQuote, "type '") \ |
341 V(QuoteIsNotASubtypeOf, "' is not a subtype of ") \ | 341 V(QuoteIsNotASubtypeOf, "' is not a subtype of ") \ |
342 V(SpaceOfSpace, " of ") \ | 342 V(SpaceOfSpace, " of ") \ |
343 V(SwitchExpr, ":switch_expr") \ | 343 V(SwitchExpr, ":switch_expr") \ |
344 V(TwoNewlines, "\n\n") \ | 344 V(TwoNewlines, "\n\n") \ |
345 V(TwoSpaces, " ") \ | 345 V(TwoSpaces, " ") \ |
346 V(_instanceOf, "_instanceOf") \ | 346 V(_instanceOf, "_instanceOf") \ |
347 V(_simpleInstanceOf, "_simpleInstanceOf") \ | 347 V(_simpleInstanceOf, "_simpleInstanceOf") \ |
348 V(_simpleInstanceOfTrue, "_simpleInstanceOfTrue") \ | 348 V(_simpleInstanceOfTrue, "_simpleInstanceOfTrue") \ |
349 V(_simpleInstanceOfFalse, "_simpleInstanceOfFalse") \ | 349 V(_simpleInstanceOfFalse, "_simpleInstanceOfFalse") \ |
350 V(_instanceOfSmi, "_instanceOfSmi") \ | |
351 V(_instanceOfNum, "_instanceOfNum") \ | |
352 V(_instanceOfInt, "_instanceOfInt") \ | |
353 V(_instanceOfDouble, "_instanceOfDouble") \ | |
354 V(_instanceOfString, "_instanceOfString") \ | |
355 V(_as, "_as") \ | 350 V(_as, "_as") \ |
356 V(GetterPrefix, "get:") \ | 351 V(GetterPrefix, "get:") \ |
357 V(ClosurizePrefix, "get:#") \ | 352 V(ClosurizePrefix, "get:#") \ |
358 V(SetterPrefix, "set:") \ | 353 V(SetterPrefix, "set:") \ |
359 V(InitPrefix, "init:") \ | 354 V(InitPrefix, "init:") \ |
360 V(Index, "index") \ | 355 V(Index, "index") \ |
361 V(DartScheme, "dart:") \ | 356 V(DartScheme, "dart:") \ |
362 V(DartSchemePrivate, "dart:_") \ | 357 V(DartSchemePrivate, "dart:_") \ |
363 V(DartNativeWrappers, "dart:nativewrappers") \ | 358 V(DartNativeWrappers, "dart:nativewrappers") \ |
364 V(DartNativeWrappersLibName, "dart.nativewrappers") \ | 359 V(DartNativeWrappersLibName, "dart.nativewrappers") \ |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
693 friend class Serializer; | 688 friend class Serializer; |
694 friend class Deserializer; | 689 friend class Deserializer; |
695 friend class ApiMessageReader; | 690 friend class ApiMessageReader; |
696 | 691 |
697 DISALLOW_COPY_AND_ASSIGN(Symbols); | 692 DISALLOW_COPY_AND_ASSIGN(Symbols); |
698 }; | 693 }; |
699 | 694 |
700 } // namespace dart | 695 } // namespace dart |
701 | 696 |
702 #endif // RUNTIME_VM_SYMBOLS_H_ | 697 #endif // RUNTIME_VM_SYMBOLS_H_ |
OLD | NEW |