I have another thought <@U4UGS5FC7> I’m wondering ...
# arrow-meta
p
I have another thought @raulraja I’m wondering what
ExtensionPhase
to use to do a check when any function is called. Would it be
dotQualifiedExpression
?
r
If you want to check when a function it’s called then you’d use the
callChecker
phase. You also have
declarationChecker
.
While in the call checker you can access
resolvedCall.resultingDescriptor
which points to the function the call is resolved to.
This runs as part of the analysis phase and before IR code generation.
p
Amazing! I’ll try that route 🤞
👍 1