org.jetbrains.kotlin.metadata.jvm.deserialization.BinaryModuleData.kt Maven / Gradle / Ivy
/*
* 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.NameResolver
/**
* @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: NameResolver,
)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy