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

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

Issue 8549033: Update comments in core lib showing proper factory syntax. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month 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 | « runtime/lib/error.dart ('k') | runtime/vm/class_finalizer.cc » ('j') | 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) 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
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_
OLDNEW
« no previous file with comments | « runtime/lib/error.dart ('k') | runtime/vm/class_finalizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698