private bool HasExplicitCallStatement(VBAParser.ECS_ProcedureCallContext call) { if (call == null) { return false; } var statement = call.CALL(); return statement != null && statement.Symbol.Text == Tokens.Call; }