# File lib/PageTemplate/commands.rb, line 317
    def initialize(called_as, value)
      @value = value
      @called_as = called_as
      @trueCommands = []
      @trueCommands << [value,BlockCommand.new]
      @falseCommands = BlockCommand.new
      @in_else = (called_as == 'unless')
      @switched = false
    end