public abstract class org.apache.xpath.functions.Function extends org.apache.xpath.Expression
  minor version: 0
  major version: 59
  flags: flags: (0x0421) ACC_PUBLIC, ACC_SUPER, ACC_ABSTRACT
  this_class: org.apache.xpath.functions.Function
  super_class: org.apache.xpath.Expression
{
  static final long serialVersionUID;
    descriptor: J
    flags: (0x0018) ACC_STATIC, ACC_FINAL
    ConstantValue: 6927661240854599768

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.apache.xpath.functions.Function this
         0: .line 41
            aload 0 /* this */
            invokespecial org.apache.xpath.Expression.<init>:()V
            return
        end local 0 // org.apache.xpath.functions.Function this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/xpath/functions/Function;

  public void setArg(org.apache.xpath.Expression, int);
    descriptor: (Lorg/apache/xpath/Expression;I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=3, args_size=3
        start local 0 // org.apache.xpath.functions.Function this
        start local 1 // org.apache.xpath.Expression arg
        start local 2 // int argNum
         0: .line 59
            aload 0 /* this */
            invokevirtual org.apache.xpath.functions.Function.reportWrongNumberArgs:()V
         1: .line 60
            return
        end local 2 // int argNum
        end local 1 // org.apache.xpath.Expression arg
        end local 0 // org.apache.xpath.functions.Function this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    2     0    this  Lorg/apache/xpath/functions/Function;
            0    2     1     arg  Lorg/apache/xpath/Expression;
            0    2     2  argNum  I
    Exceptions:
      throws org.apache.xpath.functions.WrongNumberArgsException
    MethodParameters:
        Name  Flags
      arg     
      argNum  

  public void checkNumberArgs(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=2, args_size=2
        start local 0 // org.apache.xpath.functions.Function this
        start local 1 // int argNum
         0: .line 74
            iload 1 /* argNum */
            ifeq 2
         1: .line 75
            aload 0 /* this */
            invokevirtual org.apache.xpath.functions.Function.reportWrongNumberArgs:()V
         2: .line 76
      StackMap locals:
      StackMap stack:
            return
        end local 1 // int argNum
        end local 0 // org.apache.xpath.functions.Function this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lorg/apache/xpath/functions/Function;
            0    3     1  argNum  I
    Exceptions:
      throws org.apache.xpath.functions.WrongNumberArgsException
    MethodParameters:
        Name  Flags
      argNum  

  protected void reportWrongNumberArgs();
    descriptor: ()V
    flags: (0x0004) ACC_PROTECTED
    Code:
      stack=4, locals=1, args_size=1
        start local 0 // org.apache.xpath.functions.Function this
         0: .line 86
            new org.apache.xpath.functions.WrongNumberArgsException
            dup
            ldc "zero"
            aconst_null
            invokestatic org.apache.xalan.res.XSLMessages.createXPATHMessage:(Ljava/lang/String;[Ljava/lang/Object;)Ljava/lang/String;
            invokespecial org.apache.xpath.functions.WrongNumberArgsException.<init>:(Ljava/lang/String;)V
            athrow
        end local 0 // org.apache.xpath.functions.Function this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/apache/xpath/functions/Function;
    Exceptions:
      throws org.apache.xpath.functions.WrongNumberArgsException

  public org.apache.xpath.objects.XObject execute(org.apache.xpath.XPathContext);
    descriptor: (Lorg/apache/xpath/XPathContext;)Lorg/apache/xpath/objects/XObject;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.xpath.functions.Function this
        start local 1 // org.apache.xpath.XPathContext xctxt
         0: .line 101
            getstatic java.lang.System.out:Ljava/io/PrintStream;
            ldc "Error! Function.execute should not be called!"
            invokevirtual java.io.PrintStream.println:(Ljava/lang/String;)V
         1: .line 103
            aconst_null
            areturn
        end local 1 // org.apache.xpath.XPathContext xctxt
        end local 0 // org.apache.xpath.functions.Function this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    2     0   this  Lorg/apache/xpath/functions/Function;
            0    2     1  xctxt  Lorg/apache/xpath/XPathContext;
    Exceptions:
      throws javax.xml.transform.TransformerException
    MethodParameters:
       Name  Flags
      xctxt  

  public void callArgVisitors(org.apache.xpath.XPathVisitor);
    descriptor: (Lorg/apache/xpath/XPathVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.apache.xpath.functions.Function this
        start local 1 // org.apache.xpath.XPathVisitor visitor
         0: .line 111
            return
        end local 1 // org.apache.xpath.XPathVisitor visitor
        end local 0 // org.apache.xpath.functions.Function this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Lorg/apache/xpath/functions/Function;
            0    1     1  visitor  Lorg/apache/xpath/XPathVisitor;
    MethodParameters:
         Name  Flags
      visitor  

  public void callVisitors(org.apache.xpath.ExpressionOwner, org.apache.xpath.XPathVisitor);
    descriptor: (Lorg/apache/xpath/ExpressionOwner;Lorg/apache/xpath/XPathVisitor;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.apache.xpath.functions.Function this
        start local 1 // org.apache.xpath.ExpressionOwner owner
        start local 2 // org.apache.xpath.XPathVisitor visitor
         0: .line 119
            aload 2 /* visitor */
            aload 1 /* owner */
            aload 0 /* this */
            invokevirtual org.apache.xpath.XPathVisitor.visitFunction:(Lorg/apache/xpath/ExpressionOwner;Lorg/apache/xpath/functions/Function;)Z
            ifeq 2
         1: .line 121
            aload 0 /* this */
            aload 2 /* visitor */
            invokevirtual org.apache.xpath.functions.Function.callArgVisitors:(Lorg/apache/xpath/XPathVisitor;)V
         2: .line 123
      StackMap locals:
      StackMap stack:
            return
        end local 2 // org.apache.xpath.XPathVisitor visitor
        end local 1 // org.apache.xpath.ExpressionOwner owner
        end local 0 // org.apache.xpath.functions.Function this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    3     0     this  Lorg/apache/xpath/functions/Function;
            0    3     1    owner  Lorg/apache/xpath/ExpressionOwner;
            0    3     2  visitor  Lorg/apache/xpath/XPathVisitor;
    MethodParameters:
         Name  Flags
      owner    
      visitor  

  public boolean deepEquals(org.apache.xpath.Expression);
    descriptor: (Lorg/apache/xpath/Expression;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // org.apache.xpath.functions.Function this
        start local 1 // org.apache.xpath.Expression expr
         0: .line 130
            aload 0 /* this */
            aload 1 /* expr */
            invokevirtual org.apache.xpath.functions.Function.isSameClass:(Lorg/apache/xpath/Expression;)Z
            ifne 2
         1: .line 131
            iconst_0
            ireturn
         2: .line 133
      StackMap locals:
      StackMap stack:
            iconst_1
            ireturn
        end local 1 // org.apache.xpath.Expression expr
        end local 0 // org.apache.xpath.functions.Function this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lorg/apache/xpath/functions/Function;
            0    3     1  expr  Lorg/apache/xpath/Expression;
    MethodParameters:
      Name  Flags
      expr  

  public void postCompileStep(org.apache.xpath.compiler.Compiler);
    descriptor: (Lorg/apache/xpath/compiler/Compiler;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=0, locals=2, args_size=2
        start local 0 // org.apache.xpath.functions.Function this
        start local 1 // org.apache.xpath.compiler.Compiler compiler
         0: .line 143
            return
        end local 1 // org.apache.xpath.compiler.Compiler compiler
        end local 0 // org.apache.xpath.functions.Function this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    1     0      this  Lorg/apache/xpath/functions/Function;
            0    1     1  compiler  Lorg/apache/xpath/compiler/Compiler;
    MethodParameters:
          Name  Flags
      compiler  
}
SourceFile: "Function.java"