# File lib/ruote/exp/condition.rb, line 193
    def self.evl_set(match)

      set = evl(match[1])
      set = set != nil && set != ''
      set = false if match[1].match(/is$/) && match[2].nil?

      match[3].nil? ? set : ( ! set)
    end