IterateSpec
data class IterateSpec(val enter: (SyntaxNodeRef) -> Boolean?, val leave: (SyntaxNodeRef) -> Unit? = null, val from: Int? = null, val to: Int? = null, val mode: Int? = null)
Specification for Tree.iterate.
Constructors
Link copied to clipboard
constructor(enter: (SyntaxNodeRef) -> Boolean?, leave: (SyntaxNodeRef) -> Unit? = null, from: Int? = null, to: Int? = null, mode: Int? = null)