Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
AbdullinAM committed May 7, 2024
1 parent bbdadf9 commit 929d64d
Showing 1 changed file with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ suspend fun Method.checkAsync(
generateInitialDescriptors(this, ctx, result.model, checker.state)
.performMocking(ctx, state, this)
.parameters
.filterStaticFinals(ctx.cm)
.concreteParameters(ctx.cm, ctx.accessLevel, ctx.random)
.also { log.debug { "Generated params:\n$it" } }
.filterIgnoredStatic()
Expand Down Expand Up @@ -115,6 +116,7 @@ suspend fun Method.checkAsyncAndSlice(
val filteredParams = params
.performMocking(ctx, state, this)
.parameters
.filterStaticFinals(ctx.cm)
.concreteParameters(ctx.cm, ctx.accessLevel, ctx.random)
.also { log.debug { "Generated params:\n$it" } }
.filterIgnoredStatic()
Expand Down Expand Up @@ -171,6 +173,7 @@ suspend fun Method.checkAsyncIncremental(
.performMocking(ctx, state, this)
.transform {
it.concreteParameters(ctx.cm, ctx.accessLevel, ctx.random)
.filterStaticFinals(ctx.cm)
.also { log.debug { "Generated params:\n$it" } }
.filterIgnoredStatic()
}
Expand Down Expand Up @@ -240,8 +243,9 @@ suspend fun Method.checkAsyncIncrementalAndSlice(
.performMocking(ctx, state, this)
.transform {
it.concreteParameters(ctx.cm, ctx.accessLevel, ctx.random)
.also { log.debug { "Generated params:\n$it" } }
.filterIgnoredStatic()
.filterStaticFinals(ctx.cm)
.also { log.debug { "Generated params:\n$it" } }
.filterIgnoredStatic()
}

val (thisTerm, argTerms) = collectArguments(fullPS)
Expand Down

0 comments on commit 929d64d

Please sign in to comment.