| 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/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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 V(Close, "close") \ | 55 V(Close, "close") \ |
| 56 V(Values, "values") \ | 56 V(Values, "values") \ |
| 57 V(_EnumNames, "_enum_names") \ | 57 V(_EnumNames, "_enum_names") \ |
| 58 V(ExprTemp, ":expr_temp") \ | 58 V(ExprTemp, ":expr_temp") \ |
| 59 V(FinallyRetVal, ":finally_ret_val") \ | 59 V(FinallyRetVal, ":finally_ret_val") \ |
| 60 V(AnonymousClosure, "<anonymous closure>") \ | 60 V(AnonymousClosure, "<anonymous closure>") \ |
| 61 V(AnonymousSignature, "<anonymous signature>") \ | 61 V(AnonymousSignature, "<anonymous signature>") \ |
| 62 V(ImplicitClosure, "<implicit closure>") \ | 62 V(ImplicitClosure, "<implicit closure>") \ |
| 63 V(ClosureParameter, ":closure") \ | 63 V(ClosureParameter, ":closure") \ |
| 64 V(TypeArgumentsParameter, ":type_arguments") \ | 64 V(TypeArgumentsParameter, ":type_arguments") \ |
| 65 V(FunctionInstantiatorVar, ":function_instantiator_var") \ |
| 65 V(AssertionError, "_AssertionError") \ | 66 V(AssertionError, "_AssertionError") \ |
| 66 V(CastError, "_CastError") \ | 67 V(CastError, "_CastError") \ |
| 67 V(TypeError, "_TypeError") \ | 68 V(TypeError, "_TypeError") \ |
| 68 V(FallThroughError, "FallThroughError") \ | 69 V(FallThroughError, "FallThroughError") \ |
| 69 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ | 70 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ |
| 70 V(NoSuchMethodError, "NoSuchMethodError") \ | 71 V(NoSuchMethodError, "NoSuchMethodError") \ |
| 71 V(CyclicInitializationError, "CyclicInitializationError") \ | 72 V(CyclicInitializationError, "CyclicInitializationError") \ |
| 72 V(ThrowNew, "_throwNew") \ | 73 V(ThrowNew, "_throwNew") \ |
| 73 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ | 74 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ |
| 74 V(CheckAssertion, "_checkAssertion") \ | 75 V(CheckAssertion, "_checkAssertion") \ |
| (...skipping 611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 686 friend class Serializer; | 687 friend class Serializer; |
| 687 friend class Deserializer; | 688 friend class Deserializer; |
| 688 friend class ApiMessageReader; | 689 friend class ApiMessageReader; |
| 689 | 690 |
| 690 DISALLOW_COPY_AND_ASSIGN(Symbols); | 691 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 691 }; | 692 }; |
| 692 | 693 |
| 693 } // namespace dart | 694 } // namespace dart |
| 694 | 695 |
| 695 #endif // VM_SYMBOLS_H_ | 696 #endif // VM_SYMBOLS_H_ |
| OLD | NEW |