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

Unified Diff: lib/compiler/implementation/typechecker.dart

Issue 10628007: Resolve typedefs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: lib/compiler/implementation/typechecker.dart
diff --git a/lib/compiler/implementation/typechecker.dart b/lib/compiler/implementation/typechecker.dart
index 54698b8aa099814b8cef111481931ddde1977098..e10766a6af351b904d6f730fd8306874a8357afa 100644
--- a/lib/compiler/implementation/typechecker.dart
+++ b/lib/compiler/implementation/typechecker.dart
@@ -92,10 +92,10 @@ class InterfaceType implements Type {
class FunctionType implements Type {
final Element element;
final Type returnType;
- final Link<Type> parameterTypes;
+ Link<Type> parameterTypes;
- const FunctionType(Type this.returnType, Link<Type> this.parameterTypes,
- Element this.element);
+ FunctionType(Type this.returnType, Link<Type> this.parameterTypes,
+ Element this.element);
toString() {
StringBuffer sb = new StringBuffer();

Powered by Google App Engine
This is Rietveld 408576698