Index: lib/dartdoc/mirrors/dart2js_mirror.dart |
diff --git a/lib/dartdoc/mirrors/dart2js_mirror.dart b/lib/dartdoc/mirrors/dart2js_mirror.dart |
index 4824bbc104b03267273c22c647e9a85b5c302ecf..a115b649c987bec9bc75ea3936ba127d45d25ec4 100644 |
--- a/lib/dartdoc/mirrors/dart2js_mirror.dart |
+++ b/lib/dartdoc/mirrors/dart2js_mirror.dart |
@@ -1021,7 +1021,7 @@ class Dart2JsInterfaceTypeMirror extends Dart2JsTypeElementMirror |
List<TypeMirror> typeArguments() { |
if (_typeArguments == null) { |
_typeArguments = <TypeMirror>[]; |
- Link<Type> type = _interfaceType.arguments; |
+ Link<Type> type = _interfaceType.typeArguments; |
while (type != null && type.head != null) { |
_typeArguments.add(_convertTypeToTypeMirror(system, type.head, |
system.compiler.dynamicClass.computeType(system.compiler))); |