FIR/UAST: commonize UnknownKotlinExpression

This commit is contained in:
Jinseong Jeon
2021-05-14 11:56:31 -07:00
committed by Ilya Kirillov
parent 15a4649675
commit 741fdee59e
129 changed files with 321 additions and 349 deletions
@@ -0,0 +1,17 @@
/*
* Copyright 2010-2021 JetBrains s.r.o. and Kotlin Programming Language contributors.
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
*/
package org.jetbrains.uast.kotlin
import org.jetbrains.kotlin.psi.KtExpression
import org.jetbrains.uast.UElement
import org.jetbrains.uast.UExpression
class UnknownKotlinExpression(
override val sourcePsi: KtExpression,
givenParent: UElement?
) : KotlinAbstractUExpression(givenParent), UExpression {
override fun asLogString() = "[!] UnknownKotlinExpression ($sourcePsi)"
}