Class ArraySyntheticFunctionName

Direct Known Subclasses:
JavaScriptSyntheticFunctionName, WatCodeSyntheticFunctionName

public abstract class ArraySyntheticFunctionName extends SyntheticFunctionName
Synthetic/dynamic method with a signature as array of types.
  • Field Details

    • signatureTypes

      private final AnyType[] signatureTypes
  • Constructor Details

    • ArraySyntheticFunctionName

      public ArraySyntheticFunctionName(String className, String name, AnyType... signatureTypes)
      Create a new instance.
      Parameters:
      className - the Java class name
      name - the function name
      signatureTypes - the method signature, first the parameters, then null and the the return types
    • ArraySyntheticFunctionName

      public ArraySyntheticFunctionName(String className, String name, String signature, AnyType... signatureTypes)
      Create a new instance.
      Parameters:
      className - the Java class name
      name - the function name
      signature - the string signature
      signatureTypes - the method signature, first the parameters, then null and the the return types
  • Method Details