new(parent, line=0, pos=0)
public
Create a new node as a child of
the given parent.
# File actionview/lib/action_view/vendor/html-scanner/html/node.rb, line 68
def initialize(parent, line=0, pos=0)
@parent = parent
@children = []
@line, @position = line, pos
end