org.jetbrains.kotlin.metadata.jvm.deserialization.BinaryModuleData.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 2000-2018 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.metadata.jvm.deserialization
import org.jetbrains.kotlin.metadata.ProtoBuf
import org.jetbrains.kotlin.metadata.deserialization.NameResolverImpl
/**
* @param annotations list of module annotations, in the format: "org/foo/bar/Baz.Inner" (see [ClassId.fromString])
* @param optionalAnnotations list of @OptionalExpectation-annotated annotation classes in this module.
* @param nameResolver string table to resolve names referenced in classes in [optionalAnnotations].
*/
class BinaryModuleData(
val annotations: List,
val optionalAnnotations: List,
val nameResolver: NameResolverImpl,
)