Property definitions

csv $ CsvStream :: defaultinit
# Shared properties by all CSV-related classes
#
# This class is basically only here for implementation purposes and should not be used
# by clients for typing.
abstract class CsvStream
	# The character that delimits escaped value.
	#
	# The delimiter is escaped by doubling it.
	var delimiter = '"' is writable

	# The character that split each cell in a record.
	var separator = ',' is writable

	# The character that ends a record (end of line).
	var eol = "\n" is writable
end
lib/csv/csv.nit:99,1--114,3