# File lib/html/stparser.rb, line 27 def parse_file_named(name) File.open(name) { |f| while bytes = f.read(65536) feed(bytes) end } end