Object
# File lib/eim_xml/parser.rb, line 49 def parse_empty_element parse_tag end
# File lib/eim_xml/parser.rb, line 54 def parse_start_tag e = parse_tag until @scanner.scan(RE::END_TAG) c = parse raise ParseError.new("Syntax error.") unless c e << c end raise ParseError.new("End tag mismatched.") unless @scanner[1].to_sym==e.name e end
Generated with the Darkfish Rdoc Generator 2.