File tree 3 files changed +4
-8
lines changed 3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change 1
1
## 8.3.4-wip
2
2
* The URL for category pages now uses _ category name_ instead of
3
3
_ category ` displayName ` _ .
4
+ * Require analyzer 7.4.4 APIs.
4
5
5
6
## 8.3.3
6
7
Original file line number Diff line number Diff line change 5
5
import 'package:analyzer/dart/element/element2.dart' ;
6
6
import 'package:analyzer/dart/element/nullability_suffix.dart' ;
7
7
import 'package:analyzer/dart/element/type.dart' ;
8
- // ignore: implementation_imports
9
- import 'package:analyzer/src/dart/element/element.dart' ;
10
- // ignore: implementation_imports
11
- import 'package:analyzer/src/dart/element/type_system.dart' ;
12
8
import 'package:dartdoc/src/element_type.dart' ;
13
9
import 'package:dartdoc/src/model/comment_referable.dart' ;
14
10
import 'package:dartdoc/src/model/kind.dart' ;
@@ -52,9 +48,8 @@ class Extension extends Container {
52
48
extendedType = library.element.typeSystem.promoteToNonNull (extendedType);
53
49
var otherType = container.modelType.type;
54
50
if (otherType is InterfaceType ) {
55
- otherType = (library.element.typeSystem as TypeSystemImpl )
56
- .instantiateInterfaceToBounds2 (
57
- element: otherType.element3 as InterfaceElementImpl2 ,
51
+ otherType = library.element.typeSystem.instantiateInterfaceToBounds2 (
52
+ element: otherType.element3,
58
53
nullabilitySuffix: NullabilitySuffix .none,
59
54
);
60
55
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ environment:
7
7
sdk : ^3.6.0
8
8
9
9
dependencies :
10
- analyzer : ^7.3.0
10
+ analyzer : ^7.4.4
11
11
args : ^2.4.1
12
12
collection : ^1.17.0
13
13
crypto : ^3.0.3
You can’t perform that action at this time.
0 commit comments