class PhraseParser::PhraseClause

Phrase

Attributes

operator[RW]
phrase[RW]

Public Class Methods

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