All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.lightningkite.khrysalis.util.walkTree.kt Maven / Gradle / Ivy

The newest version!
package com.lightningkite.khrysalis.util

import org.jetbrains.kotlin.com.intellij.psi.PsiElement
import org.jetbrains.kotlin.psi.psiUtil.allChildren

fun PsiElement.walkTopDown(): Sequence {
    return sequenceOf(this) + allChildren.flatMap { it.walkTopDown() }
}
fun PsiElement.walkBottomUp(): Sequence {
    return allChildren.flatMap { it.walkBottomUp() } + sequenceOf(this)
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy