val Node.childIndex: Int |
|
fun Node.getChild(i: Int): Node! |
|
val Node.numChildren: Int
Extension methods to make the Node API more Kotlin-like |
|
val Node.parent: Node? |
|
fun Node.safeGetChild(i: Int): Node? |
|
fun <N : Node> Node?.shouldMatchNode(ignoreChildren: Boolean = false, nodeSpec: NodeSpec<N>): Unit
A shorthand for baseShouldMatchSubtree providing the NodeTreeLikeAdapter. |