Pop and return the last node

Also pop (and discard) the associated state Used by generated parsers

Property definitions

nitcc_runtime $ Parser :: pop
	# Pop and return the last node
	# Also pop (and discard) the associated state
	# Used by generated parsers
	fun pop: Node
	do
		var res = node_stack.pop
		state = state_stack.pop
		return res
	end
lib/nitcc_runtime/nitcc_runtime.nit:62,2--70,4