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