Skip to content

Commit

Permalink
fix #141, #139
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanco committed Nov 6, 2022
1 parent c5f9305 commit 75e38eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/vanstudio/sequence/util/MyUastUtil.kt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import vanstudio.sequence.openapi.model.LambdaExprDescription
import vanstudio.sequence.openapi.model.MethodDescription

fun createMethod(node: ULambdaExpression, offset: Int): MethodDescription {
val paramPair: ParamPair = extractParameters(node.parameters)
val paramPair: ParamPair = extractParameters(node.valueParameters)
val returnType = node.getExpressionType()?.canonicalText

val uMethod = node.getParentOfType(UMethod::class.java, true)
Expand Down

0 comments on commit 75e38eb

Please sign in to comment.