Class: ActiveFacts::CQL::Parser::TermDefinitionNameNode

Inherits:
TermNode
  • Object
show all
Defined in:
lib/activefacts/cql/nodes.rb

Instance Method Summary collapse

Methods inherited from TermNode

#ast

Instance Method Details

#node_typeObject



43
44
45
# File 'lib/activefacts/cql/nodes.rb', line 43

def node_type
  :term
end

#valueObject



37
38
39
40
41
# File 'lib/activefacts/cql/nodes.rb', line 37

def value
  t.elements.inject([
    id.value
  ]){|a, e| a << e.id.value}*' '
end