[FIR JS] Implement FirJsExportDeclarationChecker

This commit is contained in:
Nikolay Lunyak
2023-01-27 15:22:17 +02:00
parent 624162dc07
commit f644eb7988
38 changed files with 450 additions and 115 deletions
@@ -58,6 +58,10 @@ sealed class KtFakeSourceElementKind(final override val shouldSkipErrorTypeRepor
// with a fake source which refers to containing class
object ImplicitConstructor : KtFakeSourceElementKind()
// for constructor type parameters, because they refer to the same source
// as the class type parameters themselves
object ConstructorTypeParameter : KtFakeSourceElementKind()
// for constructors which do not have delegated constructor call the fake one is generated
// with a fake sources which refers to the original constructor
object DelegatingConstructorCall : KtFakeSourceElementKind()