| Index: dart/sdk/lib/_internal/compiler/implementation/dart_backend/placeholder_collector.dart
|
| diff --git a/dart/sdk/lib/_internal/compiler/implementation/dart_backend/placeholder_collector.dart b/dart/sdk/lib/_internal/compiler/implementation/dart_backend/placeholder_collector.dart
|
| index 487736f354d45dc33eb25700f39dc092593c0c43..a844975f6812f7769bfb2e0c686449d5588c7e4a 100644
|
| --- a/dart/sdk/lib/_internal/compiler/implementation/dart_backend/placeholder_collector.dart
|
| +++ b/dart/sdk/lib/_internal/compiler/implementation/dart_backend/placeholder_collector.dart
|
| @@ -439,7 +439,7 @@ class PlaceholderCollector extends Visitor {
|
| static bool isPlainTypeName(TypeAnnotation typeAnnotation) {
|
| if (typeAnnotation.typeName is !Identifier) return false;
|
| if (typeAnnotation.typeArguments == null) return true;
|
| - if (typeAnnotation.typeArguments.length == 0) return true;
|
| + if (typeAnnotation.typeArguments.isEmpty) return true;
|
| return false;
|
| }
|
|
|
|
|