SimpleModeState
data class SimpleModeState(var state: String = "start", var pending: MutableList<PendingToken>? = null, var indent: MutableList<Int>? = null, var stack: MutableList<String>? = null)
State for a simpleMode-based parser.
Constructors
Link copied to clipboard
constructor(state: String = "start", pending: MutableList<PendingToken>? = null, indent: MutableList<Int>? = null, stack: MutableList<String>? = null)