File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed
seqra-jvm-dataflow/src/main/kotlin/org/seqra/dataflow/jvm Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ seqraOrg=seqra
22
33seqraBuildVersion =2025.10.01.6b66511
44
5- seqraIrVersion =2025.10.09.8af579a
6- seqraConfigVersion =2025.11.08.5fe2c2b
7- seqraUtilVersion =2025.10.28.b93c206
5+ seqraIrVersion =2025.11.27.cbc858a
6+ seqraConfigVersion =2025.11.27.f3b2677
7+ seqraUtilVersion =2025.11.27.8076afc
Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ class LambdaAnonymousClassFeature : JIRClasspathExtFeature {
335335 }
336336 }
337337
338- private class JIRLambdaMethod (
338+ class JIRLambdaMethod (
339339 name : String ,
340340 returnType : TypeName ,
341341 description : String ,
Original file line number Diff line number Diff line change @@ -82,7 +82,12 @@ class JIRSarifTraits(
8282 }
8383
8484 override fun printArgumentNth (index : Int , methodName : String? ): String {
85- val ofMethod = methodName?.let { " of \" $it \" " } ? : " "
85+ val ofMethod = methodName?.let {
86+ if (it.startsWith(" lambda$" ))
87+ " of lambda"
88+ else
89+ " of \" $it \" "
90+ } ? : " "
8691 return " the ${getOrdinal(index + 1 )} argument$ofMethod "
8792 }
8893
You can’t perform that action at this time.
0 commit comments