class Covered::Source

def parse(path)

def parse(path)
	# puts "Parse #{path}"
	
	if source = @paths[path]
		RubyVM::AST.parse(source)
	elsif File.exist?(path)
		RubyVM::AST.parse_file(path)
	else
		warn "Couldn't parse #{path}, file doesn't exist?"
	end
end