Consume the next token and shift to the state dest.

Used by generated parsers

Property definitions

nitcc_runtime $ Parser :: shift
	# Consume the next token and shift to the state `dest`.
	# Used by generated parsers
	fun shift(dest: LRState)
	do
		var t = get_token
		#print "shift {t} -> {dest}"
		node_stack.push t
		state_stack.push state
		state = dest
	end
lib/nitcc_runtime/nitcc_runtime.nit:34,2--43,4