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

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

Issue 9939003: Use null type argument vector instead of vector of Dynamic for a generic raw (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | runtime/vm/class_finalizer.cc » ('j') | runtime/vm/class_finalizer.cc » ('J')
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_CLASS_FINALIZER_H_ 5 #ifndef VM_CLASS_FINALIZER_H_
6 #define VM_CLASS_FINALIZER_H_ 6 #define VM_CLASS_FINALIZER_H_
7 7
8 #include "vm/allocation.h" 8 #include "vm/allocation.h"
9 #include "vm/growable_array.h" 9 #include "vm/growable_array.h"
10 10
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 static bool FinalizePendingClasses(bool generating_snapshot); 90 static bool FinalizePendingClasses(bool generating_snapshot);
91 static void FinalizeClass(const Class& cls, bool generating_snapshot); 91 static void FinalizeClass(const Class& cls, bool generating_snapshot);
92 static bool IsSuperCycleFree(const Class& cls); 92 static bool IsSuperCycleFree(const Class& cls);
93 static void CheckForLegalConstClass(const Class& cls); 93 static void CheckForLegalConstClass(const Class& cls);
94 static RawClass* ResolveClass(const Class& cls, 94 static RawClass* ResolveClass(const Class& cls,
95 const UnresolvedClass& unresolved_class); 95 const UnresolvedClass& unresolved_class);
96 static void ResolveSuperType(const Class& cls); 96 static void ResolveSuperType(const Class& cls);
97 static void ResolveDefaultClass(const Class& cls); 97 static void ResolveDefaultClass(const Class& cls);
98 static void ResolveInterfaces(const Class& cls, 98 static void ResolveInterfaces(const Class& cls,
99 const GrowableObjectArray& visited); 99 const GrowableObjectArray& visited);
100 static void FinalizeTypeParameters(const Class& cls);
100 static void FinalizeTypeArguments(const Class& cls, 101 static void FinalizeTypeArguments(const Class& cls,
101 const AbstractTypeArguments& arguments, 102 const AbstractTypeArguments& arguments,
102 FinalizationKind finalization); 103 FinalizationKind finalization);
103 static void ResolveType(const Class& cls, 104 static void ResolveType(const Class& cls,
104 const AbstractType& type, 105 const AbstractType& type,
105 FinalizationKind finalization); 106 FinalizationKind finalization);
106 static void ResolveAndFinalizeUpperBounds(const Class& cls); 107 static void ResolveAndFinalizeUpperBounds(const Class& cls);
107 static void ResolveAndFinalizeSignature(const Class& cls, 108 static void ResolveAndFinalizeSignature(const Class& cls,
108 const Function& function); 109 const Function& function);
109 static void ResolveAndFinalizeMemberTypes(const Class& cls); 110 static void ResolveAndFinalizeMemberTypes(const Class& cls);
110 static void PrintClassInformation(const Class& cls); 111 static void PrintClassInformation(const Class& cls);
111 static void VerifyClassImplements(const Class& cls); 112 static void VerifyClassImplements(const Class& cls);
112 static void CollectInterfaces(const Class& cls, 113 static void CollectInterfaces(const Class& cls,
113 const GrowableObjectArray& interfaces); 114 const GrowableObjectArray& interfaces);
114 static void ReportError(const Error& error); 115 static void ReportError(const Error& error);
115 static void ReportError(const Script& script, 116 static void ReportError(const Script& script,
116 intptr_t token_index, 117 intptr_t token_index,
117 const char* format, ...); 118 const char* format, ...);
118 static void ReportError(const char* format, ...); 119 static void ReportError(const char* format, ...);
119 }; 120 };
120 121
121 } // namespace dart 122 } // namespace dart
122 123
123 #endif // VM_CLASS_FINALIZER_H_ 124 #endif // VM_CLASS_FINALIZER_H_
OLDNEW
« no previous file with comments | « no previous file | runtime/vm/class_finalizer.cc » ('j') | runtime/vm/class_finalizer.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698