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

io.joern.kotlin2cpg.psi.PsiUtils.scala Maven / Gradle / Ivy

There is a newer version: 4.0.82
Show newest version
package io.joern.kotlin2cpg.psi

import org.jetbrains.kotlin.com.intellij.psi.PsiElement
import org.jetbrains.kotlin.psi.KtDestructuringDeclaration
import org.jetbrains.kotlin.psi.KtDestructuringDeclarationEntry
import org.jetbrains.kotlin.psi.KtElement
import org.jetbrains.kotlin.psi.KtObjectDeclaration
import org.jetbrains.kotlin.psi.KtTreeVisitorVoid

import scala.jdk.CollectionConverters.CollectionHasAsScala

object PsiUtils {

  def nonUnderscoreDestructuringEntries(expr: KtDestructuringDeclaration): Seq[KtDestructuringDeclarationEntry] = {
    val underscore = "_"
    expr.getEntries.asScala.filterNot(_.getText == underscore).toSeq
  }

  def objectIdxMaybe(psiElem: PsiElement, containing: PsiElement): Option[Int] = {
    class ForEachTreeVisitor(block: KtElement => Unit) extends KtTreeVisitorVoid {
      override def visitKtElement(element: KtElement): Unit = {
        if (element != null) {
          super.visitKtElement(element)
          block(element)
        }
      }
    }

    val buf = scala.collection.mutable.ListBuffer.empty[KtObjectDeclaration]
    val visitor =
      new ForEachTreeVisitor({
        case e: KtObjectDeclaration => buf.append(e)
        case _                      =>
      })
    visitor.visitKtElement(containing.asInstanceOf[KtElement])
    var outIdx: Option[Int] = None
    buf.zipWithIndex.foreach { case (elem: PsiElement, idx) =>
      if (elem == psiElem) outIdx = Some(idx + 1)
    }
    outIdx
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy