org.scalajs.linker.frontend.LinkingUnit.scala Maven / Gradle / Ivy
/*
* Scala.js (https://www.scala-js.org/)
*
* Copyright EPFL.
*
* Licensed under Apache License 2.0
* (https://www.apache.org/licenses/LICENSE-2.0).
*
* See the NOTICE file distributed with this work for
* additional information regarding copyright ownership.
*/
package org.scalajs.linker.frontend
import org.scalajs.linker.interface.ModuleInitializer
import org.scalajs.linker.standard._
final class LinkingUnit private[frontend] (
val coreSpec: CoreSpec,
val classDefs: List[LinkedClass],
val topLevelExports: List[LinkedTopLevelExport],
val moduleInitializers: List[ModuleInitializer]
)