Hi everyone, does anyone know, how I can exclude g...
# code-coverage
m
Hi everyone, does anyone know, how I can exclude generated inner classes which are only numbers? Like
$x$1
,
$x$1$1
,
$y$1$2
etc., but keeping all “normal” inner classes which don’t have the numeric names?
"*\$*\$*"
doesn’t seem to work Same for
$x$DefaultImpls
where
"*\$DefaultImpls"
doesn’t seem to work either
c
Aren't those the technical names of lambdas? Are you sure you want to exclude them? (Sorry, I do not know the answer you're searching for, but I'm really curious about the situation)
m
Yeah, they are coming from lambdas inside an inline function. But what I don’t like here is, that I have 4 entries for the same inline function with multiple variants of
$1$x
and different statistics but in the end I only care about the function before the
$xxx
and the statistics should be grouped in one function