Entry

mill.api.internal.PrecompiledModulesInfo.Entry
case class Entry(relPath: String, extendsClass: String, moduleDeps: Map[String, Seq[(String, Int)]], compileModuleDeps: Map[String, Seq[(String, Int)]], runModuleDeps: Map[String, Seq[(String, Int)]], bomModuleDeps: Map[String, Seq[(String, Int)]])

One entry per orphan precompiled YAML.

relPath and extendsClass mirror what codegen otherwise embeds in generated PrecompiledModuleRef.apply calls. Each *ModuleDeps map is keyed by nested-module path inside the YAML ("" for top-level, "test" for object test: etc.), with values listing sibling refs paired with their byte offset in the YAML for diagnostic reporting.

Attributes

Source
PrecompiledModulesInfo.scala
Graph
Supertypes
trait Serializable
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Show all

Members list

Value members

Inherited methods

def productElementNames: Iterator[String]

An iterator over the names of all the elements of this product.

An iterator over the names of all the elements of this product.

Attributes

Inherited from:
Product
Source
Product.scala
def productIterator: Iterator[Any]

An iterator over all the elements of this product.

An iterator over all the elements of this product.

Attributes

Returns

in the default implementation, an Iterator[Any]

Inherited from:
Product
Source
Product.scala