| 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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(AssertionError, "_AssertionError") \ | 65 V(AssertionError, "_AssertionError") \ |
| 66 V(CastError, "_CastError") \ | 66 V(CastError, "_CastError") \ |
| 67 V(TypeError, "_TypeError") \ | 67 V(TypeError, "_TypeError") \ |
| 68 V(FallThroughError, "FallThroughError") \ | 68 V(FallThroughError, "FallThroughError") \ |
| 69 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ | 69 V(AbstractClassInstantiationError, "AbstractClassInstantiationError") \ |
| 70 V(NoSuchMethodError, "NoSuchMethodError") \ | 70 V(NoSuchMethodError, "NoSuchMethodError") \ |
| 71 V(CyclicInitializationError, "CyclicInitializationError") \ | 71 V(CyclicInitializationError, "CyclicInitializationError") \ |
| 72 V(_CompileTimeError, "_CompileTimeError") \ |
| 72 V(ThrowNew, "_throwNew") \ | 73 V(ThrowNew, "_throwNew") \ |
| 73 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ | 74 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ |
| 74 V(CheckAssertion, "_checkAssertion") \ | 75 V(CheckAssertion, "_checkAssertion") \ |
| 75 V(CheckConstAssertion, "_checkConstAssertion") \ | 76 V(CheckConstAssertion, "_checkConstAssertion") \ |
| 76 V(Symbol, "Symbol") \ | 77 V(Symbol, "Symbol") \ |
| 77 V(SymbolCtor, "Symbol.") \ | 78 V(SymbolCtor, "Symbol.") \ |
| 78 V(List, "List") \ | 79 V(List, "List") \ |
| 79 V(ListLiteralFactory, "List._fromLiteral") \ | 80 V(ListLiteralFactory, "List._fromLiteral") \ |
| 80 V(ListFactory, "List.") \ | 81 V(ListFactory, "List.") \ |
| 81 V(Map, "Map") \ | 82 V(Map, "Map") \ |
| (...skipping 604 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 |