| 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 18 matching lines...) Expand all Loading... |
| 29 V(Super, "super") \ | 29 V(Super, "super") \ |
| 30 V(Call, "call") \ | 30 V(Call, "call") \ |
| 31 V(Current, "current") \ | 31 V(Current, "current") \ |
| 32 V(MoveNext, "moveNext") \ | 32 V(MoveNext, "moveNext") \ |
| 33 V(Value, "value") \ | 33 V(Value, "value") \ |
| 34 V(ExprTemp, ":expr_temp") \ | 34 V(ExprTemp, ":expr_temp") \ |
| 35 V(AnonymousClosure, "<anonymous closure>") \ | 35 V(AnonymousClosure, "<anonymous closure>") \ |
| 36 V(ClosureParameter, ":closure") \ | 36 V(ClosureParameter, ":closure") \ |
| 37 V(PhaseParameter, ":phase") \ | 37 V(PhaseParameter, ":phase") \ |
| 38 V(TypeArgumentsParameter, ":type_arguments") \ | 38 V(TypeArgumentsParameter, ":type_arguments") \ |
| 39 V(AssertionError, "AssertionError") \ | 39 V(AssertionError, "_AssertionError") \ |
| 40 V(CastError, "CastError") \ | 40 V(CastError, "_CastError") \ |
| 41 V(TypeError, "TypeError") \ | 41 V(TypeError, "_TypeError") \ |
| 42 V(FallThroughError, "FallThroughError") \ | 42 V(FallThroughError, "FallThroughError") \ |
| 43 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ | 43 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ |
| 44 V(NoSuchMethodError, "NoSuchMethodError") \ | 44 V(NoSuchMethodError, "NoSuchMethodError") \ |
| 45 V(CyclicInitializationError, "CyclicInitializationError") \ | 45 V(CyclicInitializationError, "CyclicInitializationError") \ |
| 46 V(ThrowNew, "_throwNew") \ | 46 V(ThrowNew, "_throwNew") \ |
| 47 V(Symbol, "Symbol") \ | 47 V(Symbol, "Symbol") \ |
| 48 V(SymbolCtor, "Symbol.") \ | 48 V(SymbolCtor, "Symbol.") \ |
| 49 V(List, "List") \ | 49 V(List, "List") \ |
| 50 V(ListLiteralFactory, "List._fromLiteral") \ | 50 V(ListLiteralFactory, "List._fromLiteral") \ |
| 51 V(ListFactory, "List.") \ | 51 V(ListFactory, "List.") \ |
| (...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 515 friend class SnapshotReader; | 515 friend class SnapshotReader; |
| 516 friend class SnapshotWriter; | 516 friend class SnapshotWriter; |
| 517 friend class ApiMessageReader; | 517 friend class ApiMessageReader; |
| 518 | 518 |
| 519 DISALLOW_COPY_AND_ASSIGN(Symbols); | 519 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 520 }; | 520 }; |
| 521 | 521 |
| 522 } // namespace dart | 522 } // namespace dart |
| 523 | 523 |
| 524 #endif // VM_SYMBOLS_H_ | 524 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |