| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ | 77 V(ThrowNewIfNotLoaded, "_throwNewIfNotLoaded") \ |
| 78 V(CheckAssertion, "_checkAssertion") \ | 78 V(CheckAssertion, "_checkAssertion") \ |
| 79 V(CheckConstAssertion, "_checkConstAssertion") \ | 79 V(CheckConstAssertion, "_checkConstAssertion") \ |
| 80 V(Symbol, "Symbol") \ | 80 V(Symbol, "Symbol") \ |
| 81 V(SymbolCtor, "Symbol.") \ | 81 V(SymbolCtor, "Symbol.") \ |
| 82 V(List, "List") \ | 82 V(List, "List") \ |
| 83 V(ListLiteralFactory, "List._fromLiteral") \ | 83 V(ListLiteralFactory, "List._fromLiteral") \ |
| 84 V(ListFactory, "List.") \ | 84 V(ListFactory, "List.") \ |
| 85 V(Map, "Map") \ | 85 V(Map, "Map") \ |
| 86 V(MapLiteralFactory, "Map._fromLiteral") \ | 86 V(MapLiteralFactory, "Map._fromLiteral") \ |
| 87 V(ImmutableMap, "ImmutableMap") \ | 87 V(ImmutableMap, "_ImmutableMap") \ |
| 88 V(ImmutableMapConstructor, "ImmutableMap._create") \ | 88 V(ImmutableMapConstructor, "_ImmutableMap._create") \ |
| 89 V(StringBase, "_StringBase") \ | 89 V(StringBase, "_StringBase") \ |
| 90 V(Interpolate, "_interpolate") \ | 90 V(Interpolate, "_interpolate") \ |
| 91 V(InterpolateSingle, "_interpolateSingle") \ | 91 V(InterpolateSingle, "_interpolateSingle") \ |
| 92 V(Iterator, "iterator") \ | 92 V(Iterator, "iterator") \ |
| 93 V(NoSuchMethod, "noSuchMethod") \ | 93 V(NoSuchMethod, "noSuchMethod") \ |
| 94 V(CurrentContextVar, ":current_context_var") \ | 94 V(CurrentContextVar, ":current_context_var") \ |
| 95 V(SavedTryContextVar, ":saved_try_context_var") \ | 95 V(SavedTryContextVar, ":saved_try_context_var") \ |
| 96 V(ExceptionParameter, ":exception") \ | 96 V(ExceptionParameter, ":exception") \ |
| 97 V(StackTraceParameter, ":stack_trace") \ | 97 V(StackTraceParameter, ":stack_trace") \ |
| 98 V(ExceptionVar, ":exception_var") \ | 98 V(ExceptionVar, ":exception_var") \ |
| (...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 665 friend class Serializer; | 665 friend class Serializer; |
| 666 friend class Deserializer; | 666 friend class Deserializer; |
| 667 friend class ApiMessageReader; | 667 friend class ApiMessageReader; |
| 668 | 668 |
| 669 DISALLOW_COPY_AND_ASSIGN(Symbols); | 669 DISALLOW_COPY_AND_ASSIGN(Symbols); |
| 670 }; | 670 }; |
| 671 | 671 |
| 672 } // namespace dart | 672 } // namespace dart |
| 673 | 673 |
| 674 #endif // RUNTIME_VM_SYMBOLS_H_ | 674 #endif // RUNTIME_VM_SYMBOLS_H_ |
| OLD | NEW |