Visit all tokens between current_token and the end of line.

Property definitions

nitc $ PrettyPrinterVisitor :: finish_line
	# Visit all tokens between `current_token` and the end of line.
	fun finish_line do
		if current_token isa TComment then
			adds
			visit current_token
		end

		while current_token isa TEol do visit(current_token)
	end
src/pretty.nit:203,2--211,4