say I have the codes below:<br><br>    void func() {}<br>    void test() {<br>        func();  // function call<br>        if (func) {  // only reference the function <br>        }<br>    }<br><br>when I get a DeclRefExpr from RecursiveASTVisitor::VisitDeclRefExpr, and I know `func` is a function type, But how can i know it's used as a normal function call, or a reference only ? <br><br>Thanks.<br>