Accept a S token.

Property definitions

saxophonit $ XophonLexer :: accept_s
	# Accept a `S` token.
	fun accept_s: Bool do
		if is_s then
			read_char
			return skip_s
		else
			return false
		end
	end
lib/saxophonit/lexer.nit:112,2--120,4