| 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 const Function& function); | 75 const Function& function); |
| 76 static void ResolveAndFinalizeMemberTypes(const Class& cls); | 76 static void ResolveAndFinalizeMemberTypes(const Class& cls); |
| 77 static void PrintClassInformation(const Class& cls); | 77 static void PrintClassInformation(const Class& cls); |
| 78 static void VerifyClassImplements(const Class& cls); | 78 static void VerifyClassImplements(const Class& cls); |
| 79 static void CollectInterfaces(const Class& cls, | 79 static void CollectInterfaces(const Class& cls, |
| 80 GrowableArray<const Class*>* interfaces); | 80 GrowableArray<const Class*>* interfaces); |
| 81 static void ReportError(const Script& script, | 81 static void ReportError(const Script& script, |
| 82 intptr_t token_index, | 82 intptr_t token_index, |
| 83 const char* format, ...); | 83 const char* format, ...); |
| 84 static void ReportError(const char* format, ...); | 84 static void ReportError(const char* format, ...); |
| 85 static void ReportWarning(const char* format, ...); | 85 static void ReportWarning(const Script& script, |
| 86 intptr_t token_index, |
| 87 const char* format, ...); |
| 86 }; | 88 }; |
| 87 | 89 |
| 88 } // namespace dart | 90 } // namespace dart |
| 89 | 91 |
| 90 #endif // VM_CLASS_FINALIZER_H_ | 92 #endif // VM_CLASS_FINALIZER_H_ |
| OLD | NEW |