com.autonomousapps.model.internal.intermediates.consumer.ExplodingBytecode.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dependency-analysis-gradle-plugin Show documentation
Show all versions of dependency-analysis-gradle-plugin Show documentation
Analyzes dependency usage in Android and JVM projects
// Copyright (c) 2024. Tony Robalik.
// SPDX-License-Identifier: Apache-2.0
package com.autonomousapps.model.internal.intermediates.consumer
import com.squareup.moshi.JsonClass
@JsonClass(generateAdapter = false)
internal data class ExplodingBytecode(
val relativePath: String,
/** The name of this class. */
val className: String,
/** The path to the source file for this class. TODO: how does this differ from [relativePath]? */
val sourceFile: String?,
/** Every class discovered in the bytecode of [className], and not as an annotation. */
val nonAnnotationClasses: Set,
/** Every class discovered in the bytecode of [className], and as a visible annotation. */
val annotationClasses: Set,
/** Every class discovered in the bytecode of [className], and as an invisible annotation. */
val invisibleAnnotationClasses: Set,
/** Every [MemberAccess] to another class from [this class][className]. */
val binaryClassAccesses: Map>,
)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy