FIR/UAST: commonize throw expression

This commit is contained in:
Jinseong Jeon
2021-05-27 01:07:47 -07:00
committed by Ilya Kirillov
parent c21fce6cbc
commit 8977e7766b
7 changed files with 28 additions and 33 deletions
@@ -0,0 +1,19 @@
/*
* 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.KtThrowExpression
import org.jetbrains.uast.UElement
import org.jetbrains.uast.UThrowExpression
class KotlinUThrowExpression(
override val sourcePsi: KtThrowExpression,
givenParent: UElement?
) : KotlinAbstractUExpression(givenParent), UThrowExpression, KotlinUElementWithType {
override val thrownExpression by lz {
baseResolveProviderService.baseKotlinConverter.convertOrEmpty(sourcePsi.thrownExpression, this)
}
}