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.



427
428
429
# File 'lib/parsing_nesting/tree.rb', line 427

def initialize(string)
  self.value = string
end

Instance Attribute Details

#valueObject

Returns the value of attribute value.



425
426
427
# File 'lib/parsing_nesting/tree.rb', line 425

def value
  @value
end

Instance Method Details

#can_embed?Boolean

Returns:

  • (Boolean)


431
432
433
# File 'lib/parsing_nesting/tree.rb', line 431

def can_embed?
  true
end

#negateObject



439
440
441
# File 'lib/parsing_nesting/tree.rb', line 439

def negate
  ExcludedClause.new(self)
end

#to_embedObject



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

def to_embed
  value
end