| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, 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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 56 static void FinalizeClass(const Class& cls); | 56 static void FinalizeClass(const Class& cls); |
| 57 static bool IsSuperCycleFree(const Class& cls); | 57 static bool IsSuperCycleFree(const Class& cls); |
| 58 static void CheckForLegalConstClass(const Class& cls); | 58 static void CheckForLegalConstClass(const Class& cls); |
| 59 static void ResolveSuperClass(const Class& cls); | 59 static void ResolveSuperClass(const Class& cls); |
| 60 static void ResolveDefaultClass(const Class& cls); | 60 static void ResolveDefaultClass(const Class& cls); |
| 61 static void ResolveInterfaces(const Class& cls, | 61 static void ResolveInterfaces(const Class& cls, |
| 62 GrowableArray<const Class*>* visited); | 62 GrowableArray<const Class*>* visited); |
| 63 static void FinalizeTypeArguments(const Class& cls, | 63 static void FinalizeTypeArguments(const Class& cls, |
| 64 const TypeArguments& arguments); | 64 const TypeArguments& arguments); |
| 65 static RawType* ResolveType(const Class& cls, const Type& type); | 65 static RawType* ResolveType(const Class& cls, const Type& type); |
| 66 static void FinalizeType(const Type& type); | 66 static RawType* FinalizeType(const Type& type); |
| 67 static void ResolveAndFinalizeSignature(const Class& cls, | 67 static void ResolveAndFinalizeSignature(const Class& cls, |
| 68 const Function& function); | 68 const Function& function); |
| 69 static void ResolveAndFinalizeMemberTypes(const Class& cls); | 69 static void ResolveAndFinalizeMemberTypes(const Class& cls); |
| 70 static void PrintClassInformation(const Class& cls); | 70 static void PrintClassInformation(const Class& cls); |
| 71 static void VerifyClassImplements(const Class& cls); | 71 static void VerifyClassImplements(const Class& cls); |
| 72 static void CollectInterfaces(const Class& cls, | 72 static void CollectInterfaces(const Class& cls, |
| 73 GrowableArray<const Class*>* interfaces); | 73 GrowableArray<const Class*>* interfaces); |
| 74 static void ReportError(const Script& script, | 74 static void ReportError(const Script& script, |
| 75 intptr_t token_index, | 75 intptr_t token_index, |
| 76 const char* format, ...); | 76 const char* format, ...); |
| 77 static void ReportError(const char* format, ...); | 77 static void ReportError(const char* format, ...); |
| 78 }; | 78 }; |
| 79 | 79 |
| 80 } // namespace dart | 80 } // namespace dart |
| 81 | 81 |
| 82 #endif // VM_CLASS_FINALIZER_H_ | 82 #endif // VM_CLASS_FINALIZER_H_ |
| OLD | NEW |