Visit current_token.

Property definitions

nitc $ PrettyPrinterVisitor :: consume
	# Visit `current_token`.
	fun consume(token: String) do
		consume_comments
		if current_token.text == token then else current_token.debug("Got `{current_token.text}`; expected `{token}`.")
		visit current_token
	end
src/pretty.nit:174,2--179,4