Pop something from the stack state

Property definitions

nitc $ Parser :: pop
	# Pop something from the stack state
	private fun pop: nullable Object
	do
		var res = _stack[_stack_pos]._nodes
		_stack_pos = _stack_pos -1
		return res
	end
src/parser/parser_work.nit:90,2--96,4