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 26 matching lines...) Expand all Loading... |
37 V(AssertionError, "AssertionErrorImplementation") \ | 37 V(AssertionError, "AssertionErrorImplementation") \ |
38 V(TypeError, "TypeErrorImplementation") \ | 38 V(TypeError, "TypeErrorImplementation") \ |
39 V(FallThroughError, "FallThroughErrorImplementation") \ | 39 V(FallThroughError, "FallThroughErrorImplementation") \ |
40 V(AbstractClassInstantiationError, \ | 40 V(AbstractClassInstantiationError, \ |
41 "AbstractClassInstantiationErrorImplementation") \ | 41 "AbstractClassInstantiationErrorImplementation") \ |
42 V(NoSuchMethodError, "NoSuchMethodError") \ | 42 V(NoSuchMethodError, "NoSuchMethodError") \ |
43 V(ThrowNew, "_throwNew") \ | 43 V(ThrowNew, "_throwNew") \ |
44 V(List, "List") \ | 44 V(List, "List") \ |
45 V(ListLiteralFactory, "List._fromLiteral") \ | 45 V(ListLiteralFactory, "List._fromLiteral") \ |
46 V(ListFactory, "List.") \ | 46 V(ListFactory, "List.") \ |
47 V(ListFixedLengthFactory, "List.fixedLength") \ | |
48 V(Map, "Map") \ | 47 V(Map, "Map") \ |
49 V(MapLiteralFactory, "Map._fromLiteral") \ | 48 V(MapLiteralFactory, "Map._fromLiteral") \ |
50 V(ImmutableMap, "ImmutableMap") \ | 49 V(ImmutableMap, "ImmutableMap") \ |
51 V(ImmutableMapConstructor, "ImmutableMap._create") \ | 50 V(ImmutableMapConstructor, "ImmutableMap._create") \ |
52 V(StringBase, "_StringBase") \ | 51 V(StringBase, "_StringBase") \ |
53 V(Interpolate, "_interpolate") \ | 52 V(Interpolate, "_interpolate") \ |
54 V(GetIterator, "iterator") \ | 53 V(GetIterator, "iterator") \ |
55 V(NoSuchMethod, "noSuchMethod") \ | 54 V(NoSuchMethod, "noSuchMethod") \ |
56 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ | 55 V(SavedArgDescVarPrefix, ":saved_args_desc_var") \ |
57 V(SavedCurrentContextVar, ":saved_current_context_var") \ | 56 V(SavedCurrentContextVar, ":saved_current_context_var") \ |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 friend class SnapshotReader; | 403 friend class SnapshotReader; |
405 friend class SnapshotWriter; | 404 friend class SnapshotWriter; |
406 friend class ApiMessageReader; | 405 friend class ApiMessageReader; |
407 | 406 |
408 DISALLOW_COPY_AND_ASSIGN(Symbols); | 407 DISALLOW_COPY_AND_ASSIGN(Symbols); |
409 }; | 408 }; |
410 | 409 |
411 } // namespace dart | 410 } // namespace dart |
412 | 411 |
413 #endif // VM_SYMBOLS_H_ | 412 #endif // VM_SYMBOLS_H_ |
OLD | NEW |