Skip to content
This repository has been archived by the owner on Feb 4, 2025. It is now read-only.

Commit

Permalink
fix line >80 chars
Browse files Browse the repository at this point in the history
  • Loading branch information
jakemac53 committed Oct 23, 2024
1 parent 26cb1a7 commit 0263248
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkgs/_macro_client/lib/src/builder_impls.dart
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,10 @@ Augmentation _buildFunctionAugmentation(
// for (TypeParameterDeclaration typeParam
// in declaration.typeParameters) ...[
// typeParam.identifier.name,
// if (typeParam.bound != null) ...[' extends ', typeParam.bound!.code],
// if (typeParam.bound != null) ...[
// ' extends ',
// typeParam.bound!.code,
// ],
// if (typeParam != declaration.typeParameters.last) ', ',
// ],
// '>',
Expand Down

0 comments on commit 0263248

Please sign in to comment.