Accept a [0-9]+ token.

Property definitions

saxophonit $ XophonLexer :: accept_digits
	# Accept a `[0-9]+` token.
	fun accept_digits(buffer: Buffer): Bool do
		if is_digit then
			loop
				buffer.chars.push(last_char.code_point)
				read_char
				if not is_digit then return true
			end
		else
			return false
		end
	end
lib/saxophonit/lexer.nit:193,2--204,4