We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4de10a3 commit a371eb5Copy full SHA for a371eb5
lib/src/model/inheriting_container.dart
@@ -119,10 +119,11 @@ abstract class InheritingContainer extends Container {
119
}
120
121
List<Operator> get inheritedOperators {
122
- var operatorNames = declaredOperators.map((o) => o.element2.name3).toSet();
+ var operatorNames =
123
+ declaredOperators.map((o) => o.element2.lookupName).toSet();
124
var inheritedOperatorElements = _inheritedElements
125
.whereType<MethodElement2>()
- .where((e) => e.isOperator && !operatorNames.contains(e.name3))
126
+ .where((e) => e.isOperator && !operatorNames.contains(e.lookupName))
127
.toSet();
128
129
return [
0 commit comments