Method: Oga::XML::PullParser#parse

Defined in:
lib/oga/xml/pull_parser.rb

#parse {|| ... } ⇒ Object

Parses the input and yields every node to the supplied block.

Yield Parameters:



65
66
67
68
69
70
71
# File 'lib/oga/xml/pull_parser.rb', line 65

def parse(&block)
  @block = block

  super

  return
end