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

Unified Diff: sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart

Issue 11418113: Substitution added to DartType (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Updated cf. comments Created 8 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 side-by-side diff with in-line comments
Download patch
Index: sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart
diff --git a/sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart b/sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart
index e38c906f1313042ee7074cd86107d004f2d097b1..5d4f253e281dbbcd066a37a0e57d13a4bc77e9bc 100644
--- a/sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart
+++ b/sdk/lib/_internal/compiler/implementation/mirrors/dart2js_mirror.dart
@@ -1169,7 +1169,7 @@ class Dart2JsInterfaceTypeMirror extends Dart2JsTypeElementMirror
List<TypeMirror> get typeArguments {
if (_typeArguments == null) {
_typeArguments = <TypeMirror>[];
- Link<DartType> type = _interfaceType.arguments;
+ Link<DartType> type = _interfaceType.typeArguments;
while (type != null && type.head != null) {
_typeArguments.add(_convertTypeToTypeMirror(mirrors, type.head,
mirrors.compiler.types.dynamicType));

Powered by Google App Engine
This is Rietveld 408576698