push a new state on the stack of states (

Used by generated parsers

Property definitions

nitcc_runtime $ Parser :: push
	# push a new state on the stack of states (
	# Used by generated parsers
	fun push(dest: LRState)
	do
		#print "push prod {prod} -> {dest}"
		state_stack.push state
		state = dest
	end
lib/nitcc_runtime/nitcc_runtime.nit:53,2--60,4