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

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

Issue 2591823002: Introduce a SignatureData class so that signature functions can store both their (Closed)
Patch Set: address comments Created 4 years 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/snapshot.h ('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 138 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 V(BoundedType, "_BoundedType") \ 149 V(BoundedType, "_BoundedType") \
150 V(MixinAppType, "_MixinAppType") \ 150 V(MixinAppType, "_MixinAppType") \
151 V(TypeArguments, "TypeArguments") \ 151 V(TypeArguments, "TypeArguments") \
152 V(Patch, "patch") \ 152 V(Patch, "patch") \
153 V(PatchClass, "PatchClass") \ 153 V(PatchClass, "PatchClass") \
154 V(Function, "Function") \ 154 V(Function, "Function") \
155 V(_Closure, "_Closure") \ 155 V(_Closure, "_Closure") \
156 V(FunctionResult, "function result") \ 156 V(FunctionResult, "function result") \
157 V(FactoryResult, "factory result") \ 157 V(FactoryResult, "factory result") \
158 V(ClosureData, "ClosureData") \ 158 V(ClosureData, "ClosureData") \
159 V(SignatureData, "SignatureData") \
159 V(RedirectionData, "RedirectionData") \ 160 V(RedirectionData, "RedirectionData") \
160 V(Field, "Field") \ 161 V(Field, "Field") \
161 V(LiteralToken, "LiteralToken") \ 162 V(LiteralToken, "LiteralToken") \
162 V(TokenStream, "TokenStream") \ 163 V(TokenStream, "TokenStream") \
163 V(Script, "Script") \ 164 V(Script, "Script") \
164 V(LibraryClass, "Library") \ 165 V(LibraryClass, "Library") \
165 V(LibraryPrefix, "LibraryPrefix") \ 166 V(LibraryPrefix, "LibraryPrefix") \
166 V(Namespace, "Namespace") \ 167 V(Namespace, "Namespace") \
167 V(Code, "Code") \ 168 V(Code, "Code") \
168 V(Instructions, "Instructions") \ 169 V(Instructions, "Instructions") \
(...skipping 495 matching lines...) Expand 10 before | Expand all | Expand 10 after
664 friend class Serializer; 665 friend class Serializer;
665 friend class Deserializer; 666 friend class Deserializer;
666 friend class ApiMessageReader; 667 friend class ApiMessageReader;
667 668
668 DISALLOW_COPY_AND_ASSIGN(Symbols); 669 DISALLOW_COPY_AND_ASSIGN(Symbols);
669 }; 670 };
670 671
671 } // namespace dart 672 } // namespace dart
672 673
673 #endif // RUNTIME_VM_SYMBOLS_H_ 674 #endif // RUNTIME_VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/snapshot.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698