Class: AttrSearchableGrammar::Nodes::FulltextCollection
- Inherits:
-
Collection
- Object
- Collection
- AttrSearchableGrammar::Nodes::FulltextCollection
- Defined in:
- lib/attr_searchable_grammar/nodes.rb
Direct Known Subclasses
Instance Attribute Summary collapse
-
#collection ⇒ Object
readonly
Returns the value of attribute collection.
Attributes inherited from Collection
Instance Method Summary collapse
- #finalize! ⇒ Object
- #fulltext? ⇒ Boolean
-
#initialize(collection, *nodes) ⇒ FulltextCollection
constructor
A new instance of FulltextCollection.
Methods inherited from Collection
#can_flatten?, #can_group?, #flatten!, #group!
Methods included from Base
#and, #can_flatten?, #can_group?, #can_optimize?, #flatten!, #group!, #nodes, #not, #optimize!, #or, #to_sql
Constructor Details
#initialize(collection, *nodes) ⇒ FulltextCollection
Returns a new instance of FulltextCollection.
163 164 165 166 167 |
# File 'lib/attr_searchable_grammar/nodes.rb', line 163 def initialize(collection, *nodes) @collection = collection super *nodes end |
Instance Attribute Details
#collection ⇒ Object (readonly)
Returns the value of attribute collection.
161 162 163 |
# File 'lib/attr_searchable_grammar/nodes.rb', line 161 def collection @collection end |
Instance Method Details
#finalize! ⇒ Object
173 174 175 |
# File 'lib/attr_searchable_grammar/nodes.rb', line 173 def finalize! FulltextExpression.new collection, self end |
#fulltext? ⇒ Boolean
169 170 171 |
# File 'lib/attr_searchable_grammar/nodes.rb', line 169 def fulltext? true end |