Property definitions

nitcc_runtime $ LRState :: defaultinit
# A state in a parser LR automaton generated by nitcc
# Used by generated parsers
abstract class LRState
	fun action(parser: Parser) is abstract
	fun goto(parser: Parser, goto: LRGoto) is abstract
	fun error_msg: String do return "FIXME"
end
lib/nitcc_runtime/nitcc_runtime.nit:142,1--148,3