Skip to content

Commit

Permalink
fix: Correspondence of aliasName to DartType.
Browse files Browse the repository at this point in the history
  • Loading branch information
mathrunet committed Jan 28, 2024
1 parent 8f936db commit e9c8d47
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions packages/katana_builder/lib/src/extensions.dart
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ extension DartObjectExtensions on DartObject {
}
}

/// Extension method of [InterfaceType].
/// Extension method of [DartTypeExtensions].
///
/// [InterfaceType]の拡張メソッド。
extension InterfaceTypeExtensions on InterfaceType {
/// [DartTypeExtensions]の拡張メソッド。
extension DartTypeExtensions on DartType {
/// Returns `true`` if this type is a null-allowed type.
///
/// この型がNull許容型の場合`true``を返します。
Expand All @@ -50,7 +50,12 @@ extension InterfaceTypeExtensions on InterfaceType {
}
return toString();
}
}

/// Extension method of [InterfaceType].
///
/// [InterfaceType]の拡張メソッド。
extension InterfaceTypeExtensions on InterfaceType {
/// Get this type and all its supertypes.
///
/// この型とそのスーパータイプをすべて取得します。
Expand Down

0 comments on commit e9c8d47

Please sign in to comment.