| 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 16 matching lines...) Expand all Loading... |
| 27 V(Super, "super") \ | 27 V(Super, "super") \ |
| 28 V(Call, "call") \ | 28 V(Call, "call") \ |
| 29 V(Current, "current") \ | 29 V(Current, "current") \ |
| 30 V(MoveNext, "moveNext") \ | 30 V(MoveNext, "moveNext") \ |
| 31 V(Value, "value") \ | 31 V(Value, "value") \ |
| 32 V(ExprTemp, ":expr_temp") \ | 32 V(ExprTemp, ":expr_temp") \ |
| 33 V(AnonymousClosure, "<anonymous closure>") \ | 33 V(AnonymousClosure, "<anonymous closure>") \ |
| 34 V(ClosureParameter, ":closure") \ | 34 V(ClosureParameter, ":closure") \ |
| 35 V(PhaseParameter, ":phase") \ | 35 V(PhaseParameter, ":phase") \ |
| 36 V(TypeArgumentsParameter, ":type_arguments") \ | 36 V(TypeArgumentsParameter, ":type_arguments") \ |
| 37 V(AssertionError, "AssertionErrorImplementation") \ | 37 V(AssertionError, "_AssertionErrorImplementation") \ |
| 38 V(TypeError, "TypeErrorImplementation") \ | 38 V(CastError, "_CastErrorImplementation") \ |
| 39 V(FallThroughError, "FallThroughErrorImplementation") \ | 39 V(TypeError, "_TypeErrorImplementation") \ |
| 40 V(FallThroughError, "_FallThroughErrorImplementation") \ |
| 40 V(AbstractClassInstantiationError, \ | 41 V(AbstractClassInstantiationError, \ |
| 41 "AbstractClassInstantiationErrorImplementation") \ | 42 "_AbstractClassInstantiationErrorImplementation") \ |
| 42 V(NoSuchMethodError, "NoSuchMethodError") \ | 43 V(NoSuchMethodError, "NoSuchMethodError") \ |
| 43 V(ThrowNew, "_throwNew") \ | 44 V(ThrowNew, "_throwNew") \ |
| 44 V(List, "List") \ | 45 V(List, "List") \ |
| 45 V(ListLiteralFactory, "List._fromLiteral") \ | 46 V(ListLiteralFactory, "List._fromLiteral") \ |
| 46 V(ListFactory, "List.") \ | 47 V(ListFactory, "List.") \ |
| 47 V(Map, "Map") \ | 48 V(Map, "Map") \ |
| 48 V(MapLiteralFactory, "Map._fromLiteral") \ | 49 V(MapLiteralFactory, "Map._fromLiteral") \ |
| 49 V(ImmutableMap, "ImmutableMap") \ | 50 V(ImmutableMap, "ImmutableMap") \ |
| 50 V(ImmutableMapConstructor, "ImmutableMap._create") \ | 51 V(ImmutableMapConstructor, "ImmutableMap._create") \ |
| 51 V(StringBase, "_StringBase") \ | 52 V(StringBase, "_StringBase") \ |
| (...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 460 friend class SnapshotReader; | 461 friend class SnapshotReader; |
| 461 friend class SnapshotWriter; | 462 friend class SnapshotWriter; |
| 462 friend class ApiMessageReader; | 463 friend class ApiMessageReader; |
| 463 | 464 |
| 464 DISALLOW_COPY_AND_ASSIGN(Symbols); | 465 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 465 }; | 466 }; |
| 466 | 467 |
| 467 } // namespace dart | 468 } // namespace dart |
| 468 | 469 |
| 469 #endif // VM_SYMBOLS_H_ | 470 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |