After a reduction on goto go to the next state

Used by generated parsers

Property definitions

nitcc_runtime $ Parser :: goto
	# After a reduction on `goto` go to the next state
	# Used by generated parsers
	fun goto(goto: LRGoto)
	do
		#print "reduce from {state} -> {prod}"
		state.goto(self, goto)
	end
lib/nitcc_runtime/nitcc_runtime.nit:45,2--51,4