# File lib/PageTemplate/commands.rb, line 402
    def initialize(called_as, value, iterators)
      @called_as = called_as
      @value     = value
      if iterators
        @iterators = iterators.strip.gsub(/\s+/, ' ').split
      else
        @iterators = nil
      end

      @switched  = false
      @commands  = BlockCommand.new
      @elseCommands = BlockCommand.new
      @in_else = false
    end