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

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

Issue 1815733003: Remove recently introduced FunctionType vm class by merging it into class Type. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: address comment Created 4 years, 9 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/snapshot.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 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 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
130 V(CompleterSyncConstructor, "Completer.sync") \ 130 V(CompleterSyncConstructor, "Completer.sync") \
131 V(CompleterFuture, "future") \ 131 V(CompleterFuture, "future") \
132 V(StreamIterator, "StreamIterator") \ 132 V(StreamIterator, "StreamIterator") \
133 V(StreamIteratorConstructor, "StreamIterator.") \ 133 V(StreamIteratorConstructor, "StreamIterator.") \
134 V(Native, "native") \ 134 V(Native, "native") \
135 V(Class, "Class") \ 135 V(Class, "Class") \
136 V(Null, "Null") \ 136 V(Null, "Null") \
137 V(Dynamic, "dynamic") \ 137 V(Dynamic, "dynamic") \
138 V(UnresolvedClass, "UnresolvedClass") \ 138 V(UnresolvedClass, "UnresolvedClass") \
139 V(Type, "_Type") \ 139 V(Type, "_Type") \
140 V(FunctionType, "_FunctionType") \
141 V(TypeRef, "_TypeRef") \ 140 V(TypeRef, "_TypeRef") \
142 V(TypeParameter, "_TypeParameter") \ 141 V(TypeParameter, "_TypeParameter") \
143 V(BoundedType, "_BoundedType") \ 142 V(BoundedType, "_BoundedType") \
144 V(MixinAppType, "_MixinAppType") \ 143 V(MixinAppType, "_MixinAppType") \
145 V(TypeArguments, "TypeArguments") \ 144 V(TypeArguments, "TypeArguments") \
146 V(Patch, "patch") \ 145 V(Patch, "patch") \
147 V(PatchClass, "PatchClass") \ 146 V(PatchClass, "PatchClass") \
148 V(Function, "Function") \ 147 V(Function, "Function") \
149 V(_Closure, "_Closure") \ 148 V(_Closure, "_Closure") \
150 V(FunctionResult, "function result") \ 149 V(FunctionResult, "function result") \
(...skipping 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
652 friend class SnapshotReader; 651 friend class SnapshotReader;
653 friend class SnapshotWriter; 652 friend class SnapshotWriter;
654 friend class ApiMessageReader; 653 friend class ApiMessageReader;
655 654
656 DISALLOW_COPY_AND_ASSIGN(Symbols); 655 DISALLOW_COPY_AND_ASSIGN(Symbols);
657 }; 656 };
658 657
659 } // namespace dart 658 } // namespace dart
660 659
661 #endif // VM_SYMBOLS_H_ 660 #endif // VM_SYMBOLS_H_
OLDNEW
« no previous file with comments | « runtime/vm/snapshot.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698