Parse the file content as a Vector

See parse_string.

Property definitions

vsm $ FileIndex :: parse_file
	# Parse the `file` content as a Vector
	#
	# See `parse_string`.
	fun parse_file(file: String): Vector do
		return parse_string(file.to_path.read_all)
	end
lib/vsm/vsm.nit:316,2--321,4