Class: Lkml::Tree::SyntaxNode

Inherits:
Object
  • Object
show all
Defined in:
lib/lkml/tree.rb

Direct Known Subclasses

BlockNode, ContainerNode, DocumentNode, ListNode, PairNode

Instance Method Summary collapse

Instance Method Details

#accept(_visitor) ⇒ Object

Raises:

  • (NotImplementedError)


176
177
178
# File 'lib/lkml/tree.rb', line 176

def accept(_visitor)
  raise NotImplementedError
end

#childrenObject

Raises:

  • (NotImplementedError)


168
169
170
# File 'lib/lkml/tree.rb', line 168

def children
  raise NotImplementedError
end

#line_numberObject

Raises:

  • (NotImplementedError)


172
173
174
# File 'lib/lkml/tree.rb', line 172

def line_number
  raise NotImplementedError
end