Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(642)

Side by Side Diff: runtime/vm/symbols.h

Issue 2637173003: VM: Fix [StringInterpolateInstr]s canonicalization: null.ToString() should return "null" (not "Null… (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 V(Completer, "Completer") \ 134 V(Completer, "Completer") \
135 V(CompleterComplete, "complete") \ 135 V(CompleterComplete, "complete") \
136 V(CompleterCompleteError, "completeError") \ 136 V(CompleterCompleteError, "completeError") \
137 V(CompleterSyncConstructor, "Completer.sync") \ 137 V(CompleterSyncConstructor, "Completer.sync") \
138 V(CompleterFuture, "future") \ 138 V(CompleterFuture, "future") \
139 V(StreamIterator, "StreamIterator") \ 139 V(StreamIterator, "StreamIterator") \
140 V(StreamIteratorConstructor, "StreamIterator.") \ 140 V(StreamIteratorConstructor, "StreamIterator.") \
141 V(Native, "native") \ 141 V(Native, "native") \
142 V(Class, "Class") \ 142 V(Class, "Class") \
143 V(Null, "Null") \ 143 V(Null, "Null") \
144 V(null, "null") \
144 V(Dynamic, "dynamic") \ 145 V(Dynamic, "dynamic") \
145 V(UnresolvedClass, "UnresolvedClass") \ 146 V(UnresolvedClass, "UnresolvedClass") \
146 V(Type, "_Type") \ 147 V(Type, "_Type") \
147 V(TypeRef, "_TypeRef") \ 148 V(TypeRef, "_TypeRef") \
148 V(TypeParameter, "_TypeParameter") \ 149 V(TypeParameter, "_TypeParameter") \
149 V(BoundedType, "_BoundedType") \ 150 V(BoundedType, "_BoundedType") \
150 V(MixinAppType, "_MixinAppType") \ 151 V(MixinAppType, "_MixinAppType") \
151 V(TypeArguments, "TypeArguments") \ 152 V(TypeArguments, "TypeArguments") \
152 V(Patch, "patch") \ 153 V(Patch, "patch") \
153 V(PatchClass, "PatchClass") \ 154 V(PatchClass, "PatchClass") \
(...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after
682 friend class Serializer; 683 friend class Serializer;
683 friend class Deserializer; 684 friend class Deserializer;
684 friend class ApiMessageReader; 685 friend class ApiMessageReader;
685 686
686 DISALLOW_COPY_AND_ASSIGN(Symbols); 687 DISALLOW_COPY_AND_ASSIGN(Symbols);
687 }; 688 };
688 689
689 } // namespace dart 690 } // namespace dart
690 691
691 #endif // RUNTIME_VM_SYMBOLS_H_ 692 #endif // RUNTIME_VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/intermediate_language.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698