Class: ParsingNesting::Tree::Term

Inherits:
Node show all
Defined in:
lib/parsing_nesting/tree.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods inherited from Node

#to_query

Constructor Details

#initialize(string) ⇒ Term

Returns a new instance of Term.



437
438
439
# File 'lib/parsing_nesting/tree.rb', line 437

def initialize(string)
  self.value = string
end

Instance Attribute Details

#valueObject

Returns the value of attribute value.



435
436
437
# File 'lib/parsing_nesting/tree.rb', line 435

def value
  @value
end

Instance Method Details

#can_embed?Boolean

Returns:

  • (Boolean)


441
442
443
# File 'lib/parsing_nesting/tree.rb', line 441

def can_embed?
  true
end

#negateObject



449
450
451
# File 'lib/parsing_nesting/tree.rb', line 449

def negate
  ExcludedClause.new(self)
end

#to_embedObject



445
446
447
# File 'lib/parsing_nesting/tree.rb', line 445

def to_embed
  value
end