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") \ |
350 V(_as, "_as") \ | 355 V(_as, "_as") \ |
351 V(GetterPrefix, "get:") \ | 356 V(GetterPrefix, "get:") \ |
352 V(ClosurizePrefix, "get:#") \ | 357 V(ClosurizePrefix, "get:#") \ |
353 V(SetterPrefix, "set:") \ | 358 V(SetterPrefix, "set:") \ |
354 V(InitPrefix, "init:") \ | 359 V(InitPrefix, "init:") \ |
355 V(Index, "index") \ | 360 V(Index, "index") \ |
356 V(DartScheme, "dart:") \ | 361 V(DartScheme, "dart:") \ |
357 V(DartSchemePrivate, "dart:_") \ | 362 V(DartSchemePrivate, "dart:_") \ |
358 V(DartNativeWrappers, "dart:nativewrappers") \ | 363 V(DartNativeWrappers, "dart:nativewrappers") \ |
359 V(DartNativeWrappersLibName, "dart.nativewrappers") \ | 364 V(DartNativeWrappersLibName, "dart.nativewrappers") \ |
(...skipping 328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
688 friend class Serializer; | 693 friend class Serializer; |
689 friend class Deserializer; | 694 friend class Deserializer; |
690 friend class ApiMessageReader; | 695 friend class ApiMessageReader; |
691 | 696 |
692 DISALLOW_COPY_AND_ASSIGN(Symbols); | 697 DISALLOW_COPY_AND_ASSIGN(Symbols); |
693 }; | 698 }; |
694 | 699 |
695 } // namespace dart | 700 } // namespace dart |
696 | 701 |
697 #endif // RUNTIME_VM_SYMBOLS_H_ | 702 #endif // RUNTIME_VM_SYMBOLS_H_ |
OLD | NEW |