| 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 V(_EnumNames, "_enum_names") \ | 59 V(_EnumNames, "_enum_names") \ |
| 60 V(_DeletedEnumSentinel, "_deleted_enum_sentinel") \ | 60 V(_DeletedEnumSentinel, "_deleted_enum_sentinel") \ |
| 61 V(_DeletedEnumPrefix, "Deleted enum value from ") \ | 61 V(_DeletedEnumPrefix, "Deleted enum value from ") \ |
| 62 V(ExprTemp, ":expr_temp") \ | 62 V(ExprTemp, ":expr_temp") \ |
| 63 V(FinallyRetVal, ":finally_ret_val") \ | 63 V(FinallyRetVal, ":finally_ret_val") \ |
| 64 V(AnonymousClosure, "<anonymous closure>") \ | 64 V(AnonymousClosure, "<anonymous closure>") \ |
| 65 V(AnonymousSignature, "<anonymous signature>") \ | 65 V(AnonymousSignature, "<anonymous signature>") \ |
| 66 V(ImplicitClosure, "<implicit closure>") \ | 66 V(ImplicitClosure, "<implicit closure>") \ |
| 67 V(ClosureParameter, ":closure") \ | 67 V(ClosureParameter, ":closure") \ |
| 68 V(TypeArgumentsParameter, ":type_arguments") \ | 68 V(TypeArgumentsParameter, ":type_arguments") \ |
| 69 V(FunctionInstantiatorVar, ":function_instantiator_var") \ | 69 V(FunctionTypeArgumentsVar, ":function_type_arguments_var") \ |
| 70 V(AssertionError, "_AssertionError") \ | 70 V(AssertionError, "_AssertionError") \ |
| 71 V(CastError, "_CastError") \ | 71 V(CastError, "_CastError") \ |
| 72 V(TypeError, "_TypeError") \ | 72 V(TypeError, "_TypeError") \ |
| 73 V(FallThroughError, "FallThroughError") \ | 73 V(FallThroughError, "FallThroughError") \ |
| 74 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ | 74 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ |
| 75 V(NoSuchMethodError, "NoSuchMethodError") \ | 75 V(NoSuchMethodError, "NoSuchMethodError") \ |
| 76 V(CyclicInitializationError, "CyclicInitializationError") \ | 76 V(CyclicInitializationError, "CyclicInitializationError") \ |
| 77 V(_CompileTimeError, "_CompileTimeError") \ | 77 V(_CompileTimeError, "_CompileTimeError") \ |
| 78 V(ThrowNew, "_throwNew") \ | 78 V(ThrowNew, "_throwNew") \ |
| 79 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ | 79 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ |
| (...skipping 613 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 friend class Serializer; | 693 friend class Serializer; |
| 694 friend class Deserializer; | 694 friend class Deserializer; |
| 695 friend class ApiMessageReader; | 695 friend class ApiMessageReader; |
| 696 | 696 |
| 697 DISALLOW_COPY_AND_ASSIGN(Symbols); | 697 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 698 }; | 698 }; |
| 699 | 699 |
| 700 } // namespace dart | 700 } // namespace dart |
| 701 | 701 |
| 702 #endif // RUNTIME_VM_SYMBOLS_H_ | 702 #endif // RUNTIME_VM_SYMBOLS_H_ |
| OLD | NEW |