Class LambdaInfo

java.lang.Object
org.jfuncmachine.compiler.classgen.LambdaInfo

public class LambdaInfo extends Object
Holds information about a lambda method, including the class name, and type of its method.
  • Field Details

    • name

      public final String name
      The name of the lambda method
    • type

      public final FunctionType type
      The type of the method
  • Constructor Details

    • LambdaInfo

      public LambdaInfo(String name, FunctionType type)
      Create a new LambdaInfo
      Parameters:
      name - The name of the lambda method
      type - The type of the method