Is there token to visit between current_token and target?

Property definitions

nitc $ PrettyPrinterVisitor :: need_catch_up
	# Is there token to visit between `current_token` and `target`?
	fun need_catch_up(target: nullable Token): Bool do
		if target == null then return false
		return current_token != target
	end
src/pretty.nit:181,2--185,4