Class: VStudioIDE::SLNGlobalSectionNode

Inherits:
SLNNode
  • Object
show all
Includes:
VStudioIDE::SLNNodeMixin::TypedNode
Defined in:
lib/vstudioide/sln_node.rb

Instance Attribute Summary

Attributes included from VStudioIDE::SLNNodeMixin::TypedNode

#params, #type

Instance Method Summary collapse

Constructor Details

#initialize(line, io) ⇒ SLNGlobalSectionNode



38
39
40
41
# File 'lib/vstudioide/sln_node.rb', line 38

def initialize(line, io)
  @children = []
  parse line, io
end

Instance Method Details

#eachObject



43
44
45
# File 'lib/vstudioide/sln_node.rb', line 43

def each
  @children.each { |c| yield c }
end