Property definitions

nitc $ State :: defaultinit
# State of the parser automata as stored in the parser stack.
private class State
	# The internal state number
	var state: Int

	# The node stored with the state in the stack
	var nodes: nullable Object
end
src/parser/parser_work.nit:20,1--27,3