Packages

object Modules

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Modules
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class Data(id: DataID, originalName: OriginalName, bytes: Array[Byte], mode: Mode) extends Product with Serializable

    A WebAssembly data segment definition.

  2. final case class Element(tpe: Type, init: List[Expr], mode: Mode) extends Product with Serializable

    A WebAssembly elem definition.

  3. final case class Export(name: String, desc: ExportDesc) extends Product with Serializable

    A WebAssembly export.

    A WebAssembly export.

    Note

    We do not use any export in our current compilation scheme. However, we used them in the past and we will likely reuse them in the future (notably for module splitting). Therefore, we keep them in the codebase not to lose the work done in implementing them.

  4. sealed abstract class ExportDesc extends AnyRef

    A WebAssembly exportdesc.

  5. final case class Function(id: FunctionID, originalName: OriginalName, typeID: TypeID, params: List[Local], results: List[Type], locals: List[Local], body: Expr, pos: Position) extends Product with Serializable

    A WebAssembly func, including names/types for parameters, locals and results.

    A WebAssembly func, including names/types for parameters, locals and results.

    Note

    The params' types and the results are not strictly necessary, as they can be derived from the typeID by resolving it to a function type. The binary writer ignores them. They are used by the text writer.

  6. final case class Global(id: GlobalID, originalName: OriginalName, isMutable: Boolean, tpe: Type, init: Expr) extends Product with Serializable

    A WebAssembly global definition.

  7. final case class Import(module: String, name: String, desc: ImportDesc) extends Product with Serializable

    A WebAssembly import.

  8. sealed abstract class ImportDesc extends AnyRef

    A WebAssembly importdesc.

  9. final case class Local(id: LocalID, originalName: OriginalName, tpe: Type) extends Product with Serializable

    A local variable declaration within a Function.

  10. final class Module extends AnyRef

    A WebAssembly module.

    A WebAssembly module.

    Fields are declared in the order of the binary format: https://webassembly.github.io/gc/core/binary/modules.html#sections

  11. final case class Tag(id: TagID, originalName: OriginalName, typeID: TypeID) extends Product with Serializable

    A WebAssembly tag definition.

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  8. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  9. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  15. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  20. object Data extends Serializable
  21. object Element extends Serializable
  22. object ExportDesc
  23. object ImportDesc

Inherited from AnyRef

Inherited from Any

Ungrouped