class PhraseParser::TermClause

Attributes

operator[RW]
term[RW]

Public Class Methods

new(operator, term) click to toggle source
# File lib/doing/phrase_parser.rb, line 54
def initialize(operator, term)
  self.operator = Operator.symbol(operator)
  self.term = term
end