| Index: sdk/lib/_internal/compiler/implementation/universe/universe.dart
|
| diff --git a/sdk/lib/_internal/compiler/implementation/universe/universe.dart b/sdk/lib/_internal/compiler/implementation/universe/universe.dart
|
| index 6827a0dee007d1af0eb912368525b0e5e9e2708e..e5e3915d8518b57786f3721788cf218bfb612466 100644
|
| --- a/sdk/lib/_internal/compiler/implementation/universe/universe.dart
|
| +++ b/sdk/lib/_internal/compiler/implementation/universe/universe.dart
|
| @@ -99,7 +99,7 @@ class Universe {
|
| /// constructor that has been called directly and not only through a
|
| /// super-call.
|
| // TODO(johnniwinther): Improve semantic precision.
|
| - Iterable<ClassElement> get instantiatedClasses {
|
| + Iterable<ClassElement> get directlyInstantiatedClasses {
|
| return _directlyInstantiatedClasses;
|
| }
|
|
|
| @@ -113,7 +113,7 @@ class Universe {
|
| /// All directly instantiated types, that is, the types of the directly
|
| /// instantiated classes.
|
| ///
|
| - /// See [instantiatedClasses].
|
| + /// See [directlyInstantiatedClasses].
|
| // TODO(johnniwinther): Improve semantic precision.
|
| Iterable<DartType> get instantiatedTypes => _instantiatedTypes;
|
|
|
|
|