Interface BindingGenerator

Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface BindingGenerator
Generates insns of \binding.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final BindingGenerator
    In a top level fun, the binding is stored in valField0 field.
    static final BindingGenerator
    In a fast fun, the binding should not be produced.
    static final BindingGenerator
    In a slow fun, the binding is stored in the stack; just after args.
  • Method Summary

    Modifier and Type
    Method
    Description
    Returns the insns.
  • Field Details

    • STACK

      static final BindingGenerator STACK
      In a slow fun, the binding is stored in the stack; just after args.
    • FIELD

      static final BindingGenerator FIELD
      In a top level fun, the binding is stored in valField0 field.
    • NOT_AVAILABLE

      static final BindingGenerator NOT_AVAILABLE
      In a fast fun, the binding should not be produced.
  • Method Details

    • generateBinding

      List<Insn> generateBinding()
      Returns the insns.
      Returns:
      the insns.