class SearchCopGrammar::Nodes::MatchesFulltext

Public Instance Methods

collection() click to toggle source
# File lib/search_cop_grammar/nodes.rb, line 108
def collection
  left
end
finalize!() click to toggle source
# File lib/search_cop_grammar/nodes.rb, line 104
def finalize!
  FulltextExpression.new collection, self
end
fulltext?() click to toggle source
# File lib/search_cop_grammar/nodes.rb, line 100
def fulltext?
  true
end
not() click to toggle source
# File lib/search_cop_grammar/nodes.rb, line 96
def not
  MatchesFulltextNot.new left, right
end