summaryrefslogtreecommitdiff
path: root/plugins/kotlin/uast/uast-kotlin-base/src/org/jetbrains/uast/kotlin/expressions/KotlinUContinueExpression.kt
blob: 32eeab3d30b6221ba1a0534b14d1426d3ea66fc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.

package org.jetbrains.uast.kotlin

import org.jetbrains.kotlin.psi.KtContinueExpression
import org.jetbrains.uast.UContinueExpression
import org.jetbrains.uast.UElement
import org.jetbrains.uast.kotlin.KotlinAbstractUExpression

class KotlinUContinueExpression(
    override val sourcePsi: KtContinueExpression,
    givenParent: UElement?
) : KotlinAbstractUExpression(givenParent), UContinueExpression {
    override val label: String?
        get() = sourcePsi.getLabelName()
}