Ignores any printable character until a whitespace is encountered

Property definitions

parser_base $ StringProcessor :: ignore_until_whitespace
	# Ignores any printable character until a whitespace is encountered
	protected fun ignore_until_whitespace: Int do
		while src.length > pos and not src[pos].is_whitespace do pos += 1
		return pos
	end
lib/parser_base/parser_base.nit:104,2--108,4