org.jetbrains.kotlin.fir.diagnostics.ConeSimpleDiagnostic.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kotlin-compiler-embeddable Show documentation
Show all versions of kotlin-compiler-embeddable Show documentation
the Kotlin compiler embeddable
/*
* Copyright 2010-2019 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.kotlin.fir.diagnostics
import org.jetbrains.kotlin.KtSourceElement
import org.jetbrains.kotlin.builtins.functions.FunctionTypeKind
import org.jetbrains.kotlin.fir.symbols.impl.FirTypeParameterSymbol
import org.jetbrains.kotlin.fir.symbols.impl.FirValueParameterSymbol
import org.jetbrains.kotlin.fir.types.ConeKotlinType
import org.jetbrains.kotlin.fir.types.ConeTypeVariableType
import org.jetbrains.kotlin.name.Name
class ConeSimpleDiagnostic(override val reason: String, val kind: DiagnosticKind = DiagnosticKind.Other) : ConeDiagnostic
class ConeSyntaxDiagnostic(override val reason: String) : ConeDiagnostic
class ConeNotAnnotationContainer(val text: String) : ConeDiagnostic {
override val reason: String get() = "Strange annotated expression: $text"
}
abstract class ConeDiagnosticWithSource(val source: KtSourceElement) : ConeDiagnostic
class ConeUnderscoreIsReserved(source: KtSourceElement) : ConeDiagnosticWithSource(source) {
override val reason: String get() = "Names _, __, ___, ..., are reserved in Kotlin"
}
class ConeMultipleLabelsAreForbidden(source: KtSourceElement) : ConeDiagnosticWithSource(source) {
override val reason: String get() = "Multiple labels per statement are forbidden"
}
class ConeCannotInferTypeParameterType(
val typeParameter: FirTypeParameterSymbol,
override val reason: String = "Cannot infer type for parameter ${typeParameter.name}"
) : ConeDiagnostic
class ConeCannotInferValueParameterType(
val valueParameter: FirValueParameterSymbol,
override val reason: String = "Cannot infer type for parameter ${valueParameter.name}"
) : ConeDiagnostic
class ConeCannotInferReceiverParameterType(
override val reason: String = "Cannot infer type for receiver parameter"
) : ConeDiagnostic
class ConeTypeVariableTypeIsNotInferred(
val typeVariableType: ConeTypeVariableType,
override val reason: String = "Type for ${typeVariableType.typeConstructor.debugName} is not inferred"
) : ConeDiagnostic
class ConeUnderscoreUsageWithoutBackticks(source: KtSourceElement) : ConeDiagnosticWithSource(source) {
override val reason: String get() = "Names _, __, ___, ... can be used only in back-ticks (`_`, `__`, `___`, ...)"
}
class ConeAmbiguousSuper(val candidateTypes: List) : ConeDiagnostic {
override val reason: String
get() = "Ambiguous supertype"
}
class ConeRecursiveTypeParameterDuringErasureError(val typeParameterName: Name) : ConeDiagnostic {
override val reason: String
get() = "self-recursive type parameter $typeParameterName"
}
object ConeDestructuringDeclarationsOnTopLevel : ConeDiagnostic {
override val reason: String
get() = "Destructuring declarations are only allowed for local variables/values"
}
object ConeDanglingModifierOnTopLevel : ConeDiagnostic {
override val reason: String
get() = "Top level declaration expected"
}
class ConeAmbiguousFunctionTypeKinds(val kinds: List) : ConeDiagnostic {
override val reason: String
get() = "There are multiple function kinds for functional type ref"
}
object ConeUnsupportedClassLiteralsWithEmptyLhs : ConeDiagnostic {
override val reason: String get() = "No receiver in class literal"
}
object ConeNoConstructorError : ConeDiagnostic {
override val reason: String get() = "This type does not have a constructor"
}
object ConeContractShouldBeFirstStatement : ConeDiagnostic {
override val reason: String get() = "Contract should be the first statement."
}
enum class DiagnosticKind {
ExpressionExpected,
NotLoopLabel,
JumpOutsideLoop,
VariableExpected,
ReturnNotAllowed,
UnresolvedLabel,
AmbiguousLabel,
LabelNameClash,
NotAFunctionLabel,
NoThis,
IllegalConstExpression,
IllegalSelector,
NoReceiverAllowed,
IllegalUnderscore,
DeserializationError,
InferenceError,
RecursionInImplicitTypes,
Java,
SuperNotAllowed,
ValueParameterWithNoTypeAnnotation,
CannotInferParameterType, // TODO: replace this with ConeCannotInferValueParameterType and ConeCannotInferTypeParameterType
IllegalProjectionUsage,
MissingStdlibClass,
NotASupertype,
SuperNotAvailable,
AnnotationInWhereClause,
AnnotationInContract,
LoopInSupertype,
RecursiveTypealiasExpansion,
UnresolvedSupertype,
UnresolvedExpandedType,
IncorrectCharacterLiteral,
EmptyCharacterLiteral,
TooManyCharactersInCharacterLiteral,
IllegalEscape,
IntLiteralOutOfRange,
FloatLiteralOutOfRange,
WrongLongSuffix,
UnsignedNumbersAreNotPresent,
IsEnumEntry,
EnumEntryAsType,
Other,
}