All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.autonomousapps.model.internal.intermediates.consumer.ExplodingBytecode.kt Maven / Gradle / Ivy

There is a newer version: 2.6.1
Show newest version
// 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