# File lib/ruote/exp/fe_command.rb, line 149
    def fetch_command_target(exp=parent)

      case exp
        when nil then nil
        when Ruote::Exp::CommandedExpression then exp
        else fetch_command_target(exp.parent)
      end
    end