Is there any reason why IDEA expression evaluator ...
# ktor
d
Is there any reason why IDEA expression evaluator doesn't see
call
or
this
inside a Ktor route? Any workaround?
g
How is that possible that
this
is not available? This always available inside of any function or class
About
call
. Are you sure that you imported
io.ktor.application.call
?
d
I made a breakpoint, put
call.parameters
into the Evaluate window, and I get
Cannot find local variable: name = this
Maybe coroutines is confusing IDEA?
g
Looks like some bug of debugging (maybe with coroutines), not Ktor or
call
d
I haven't really seen it elsewhere... I'm wondering what's so special here?
Even Coroutines in other contexts I've dealt with, I hadn't had this problem I think...