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

Unified Diff: lib/dartdoc/mirrors/dart2js_mirror.dart

Issue 10826045: Substitution handled for most Send nodes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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
« no previous file with comments | « lib/compiler/implementation/warnings.dart ('k') | tests/co19/co19-leg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)));
« no previous file with comments | « lib/compiler/implementation/warnings.dart ('k') | tests/co19/co19-leg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698