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

main.org.openrewrite.kotlin.internal.KotlinSource.kt Maven / Gradle / Ivy

There is a newer version: 1.19.7
Show newest version
/*
 * Copyright 2023 the original author or authors.
 * 

* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *

* https://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.openrewrite.kotlin.internal import lombok.Getter import lombok.Setter import org.jetbrains.kotlin.com.intellij.lang.ASTNode import org.jetbrains.kotlin.com.intellij.psi.PsiElement import org.jetbrains.kotlin.fir.declarations.FirFile import org.jetbrains.kotlin.ir.declarations.IrFile import org.jetbrains.kotlin.psi.KtElement import org.jetbrains.kotlin.psi.KtFile import org.openrewrite.Parser import java.util.* import kotlin.collections.ArrayDeque @Getter class KotlinSource( var input: Parser.Input, val ktFile: KtFile, val cRLFLocations : List ) { val nodes: Map @Setter var firFile: FirFile? = null @Setter var irFile: IrFile? = null init { nodes = map(ktFile) } private fun map(ktFile: KtFile): Map { val result: MutableMap = HashMap() val stack = ArrayDeque() stack.addFirst(ktFile) while (stack.isNotEmpty()) { val curr = stack.removeFirst() if (curr is KtElement) result[curr.textRange.startOffset] = curr.node if (curr.firstChild != null) stack.addFirst(curr.firstChild) if (curr.nextSibling != null) stack.addFirst(curr.nextSibling) } return result } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy