rand dart fix

This commit is contained in:
2026-01-15 17:36:22 -08:00
parent dbbdafd893
commit 91e7e39fe8
131 changed files with 976 additions and 1365 deletions
+4 -4
View File
@@ -25,10 +25,10 @@ extension ClauseDeclarationImplUtils on ClassDeclarationImpl {
comments.add(item.toDartComment());
}
return base.copyWith(
isAbstract: this?.abstractKeyword != null,
extendsClause: this?.extendsClause?.toString(),
implementsClause: this?.implementsClause?.toString(),
withClause: this?.withClause?.toString(),
isAbstract: this.abstractKeyword != null,
extendsClause: this.extendsClause?.toString(),
implementsClause: this.implementsClause?.toString(),
withClause: this.withClause?.toString(),
fields: fields,
constructors: constructors,
methods: methods,