public class org.eclipse.jdt.internal.compiler.ast.PostfixExpression extends org.eclipse.jdt.internal.compiler.ast.CompoundAssignment
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: org.eclipse.jdt.internal.compiler.ast.PostfixExpression
  super_class: org.eclipse.jdt.internal.compiler.ast.CompoundAssignment
{
  public void <init>(org.eclipse.jdt.internal.compiler.ast.Expression, org.eclipse.jdt.internal.compiler.ast.Expression, int, int);
    descriptor: (Lorg/eclipse/jdt/internal/compiler/ast/Expression;Lorg/eclipse/jdt/internal/compiler/ast/Expression;II)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=5
        start local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
        start local 1 // org.eclipse.jdt.internal.compiler.ast.Expression lhs
        start local 2 // org.eclipse.jdt.internal.compiler.ast.Expression expression
        start local 3 // int operator
        start local 4 // int pos
         0: .line 23
            aload 0 /* this */
            aload 1 /* lhs */
            aload 2 /* expression */
            iload 3 /* operator */
            iload 4 /* pos */
            invokespecial org.eclipse.jdt.internal.compiler.ast.CompoundAssignment.<init>:(Lorg/eclipse/jdt/internal/compiler/ast/Expression;Lorg/eclipse/jdt/internal/compiler/ast/Expression;II)V
         1: .line 24
            aload 0 /* this */
            aload 1 /* lhs */
            getfield org.eclipse.jdt.internal.compiler.ast.Expression.sourceStart:I
            putfield org.eclipse.jdt.internal.compiler.ast.PostfixExpression.sourceStart:I
         2: .line 25
            aload 0 /* this */
            iload 4 /* pos */
            putfield org.eclipse.jdt.internal.compiler.ast.PostfixExpression.sourceEnd:I
         3: .line 26
            return
        end local 4 // int pos
        end local 3 // int operator
        end local 2 // org.eclipse.jdt.internal.compiler.ast.Expression expression
        end local 1 // org.eclipse.jdt.internal.compiler.ast.Expression lhs
        end local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
      LocalVariableTable:
        Start  End  Slot        Name  Signature
            0    4     0        this  Lorg/eclipse/jdt/internal/compiler/ast/PostfixExpression;
            0    4     1         lhs  Lorg/eclipse/jdt/internal/compiler/ast/Expression;
            0    4     2  expression  Lorg/eclipse/jdt/internal/compiler/ast/Expression;
            0    4     3    operator  I
            0    4     4         pos  I
    MethodParameters:
            Name  Flags
      lhs         
      expression  
      operator    
      pos         

  public boolean checkCastCompatibility();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
         0: .line 29
            iconst_0
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/ast/PostfixExpression;

  public void generateCode(org.eclipse.jdt.internal.compiler.lookup.BlockScope, org.eclipse.jdt.internal.compiler.codegen.CodeStream, boolean);
    descriptor: (Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;Lorg/eclipse/jdt/internal/compiler/codegen/CodeStream;Z)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=5, args_size=4
        start local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
        start local 1 // org.eclipse.jdt.internal.compiler.lookup.BlockScope currentScope
        start local 2 // org.eclipse.jdt.internal.compiler.codegen.CodeStream codeStream
        start local 3 // boolean valueRequired
         0: .line 44
            aload 2 /* codeStream */
            getfield org.eclipse.jdt.internal.compiler.codegen.CodeStream.position:I
            istore 4 /* pc */
        start local 4 // int pc
         1: .line 45
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.PostfixExpression.lhs:Lorg/eclipse/jdt/internal/compiler/ast/Expression;
            checkcast org.eclipse.jdt.internal.compiler.ast.Reference
            aload 1 /* currentScope */
            aload 2 /* codeStream */
            aload 0 /* this */
            iload 3 /* valueRequired */
            invokevirtual org.eclipse.jdt.internal.compiler.ast.Reference.generatePostIncrement:(Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;Lorg/eclipse/jdt/internal/compiler/codegen/CodeStream;Lorg/eclipse/jdt/internal/compiler/ast/CompoundAssignment;Z)V
         2: .line 46
            iload 3 /* valueRequired */
            ifeq 4
         3: .line 47
            aload 2 /* codeStream */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.PostfixExpression.implicitConversion:I
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.CodeStream.generateImplicitConversion:(I)V
         4: .line 49
      StackMap locals: int
      StackMap stack:
            aload 2 /* codeStream */
            iload 4 /* pc */
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.PostfixExpression.sourceStart:I
            invokevirtual org.eclipse.jdt.internal.compiler.codegen.CodeStream.recordPositionsFrom:(II)V
         5: .line 50
            return
        end local 4 // int pc
        end local 3 // boolean valueRequired
        end local 2 // org.eclipse.jdt.internal.compiler.codegen.CodeStream codeStream
        end local 1 // org.eclipse.jdt.internal.compiler.lookup.BlockScope currentScope
        end local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0    6     0           this  Lorg/eclipse/jdt/internal/compiler/ast/PostfixExpression;
            0    6     1   currentScope  Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;
            0    6     2     codeStream  Lorg/eclipse/jdt/internal/compiler/codegen/CodeStream;
            0    6     3  valueRequired  Z
            1    6     4             pc  I
    MethodParameters:
               Name  Flags
      currentScope   
      codeStream     
      valueRequired  

  public java.lang.String operatorToString();
    descriptor: ()Ljava/lang/String;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
         0: .line 54
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.PostfixExpression.operator:I
            tableswitch { // 13 - 14
                   13: 2
                   14: 1
              default: 3
          }
         1: .line 56
      StackMap locals:
      StackMap stack:
            ldc "++"
            areturn
         2: .line 58
      StackMap locals:
      StackMap stack:
            ldc "--"
            areturn
         3: .line 60
      StackMap locals:
      StackMap stack:
            ldc "unknown operator"
            areturn
        end local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    4     0  this  Lorg/eclipse/jdt/internal/compiler/ast/PostfixExpression;

  public java.lang.StringBuffer printExpressionNoParenthesis(int, java.lang.StringBuffer);
    descriptor: (ILjava/lang/StringBuffer;)Ljava/lang/StringBuffer;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
        start local 1 // int indent
        start local 2 // java.lang.StringBuffer output
         0: .line 65
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.PostfixExpression.lhs:Lorg/eclipse/jdt/internal/compiler/ast/Expression;
            iload 1 /* indent */
            aload 2 /* output */
            invokevirtual org.eclipse.jdt.internal.compiler.ast.Expression.printExpression:(ILjava/lang/StringBuffer;)Ljava/lang/StringBuffer;
            bipush 32
            invokevirtual java.lang.StringBuffer.append:(C)Ljava/lang/StringBuffer;
            aload 0 /* this */
            invokevirtual org.eclipse.jdt.internal.compiler.ast.PostfixExpression.operatorToString:()Ljava/lang/String;
            invokevirtual java.lang.StringBuffer.append:(Ljava/lang/String;)Ljava/lang/StringBuffer;
            areturn
        end local 2 // java.lang.StringBuffer output
        end local 1 // int indent
        end local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    1     0    this  Lorg/eclipse/jdt/internal/compiler/ast/PostfixExpression;
            0    1     1  indent  I
            0    1     2  output  Ljava/lang/StringBuffer;
    MethodParameters:
        Name  Flags
      indent  
      output  

  public boolean restrainUsageToNumericTypes();
    descriptor: ()Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
         0: .line 70
            iconst_1
            ireturn
        end local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lorg/eclipse/jdt/internal/compiler/ast/PostfixExpression;

  public void traverse(org.eclipse.jdt.internal.compiler.ASTVisitor, org.eclipse.jdt.internal.compiler.lookup.BlockScope);
    descriptor: (Lorg/eclipse/jdt/internal/compiler/ASTVisitor;Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=3, args_size=3
        start local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
        start local 1 // org.eclipse.jdt.internal.compiler.ASTVisitor visitor
        start local 2 // org.eclipse.jdt.internal.compiler.lookup.BlockScope scope
         0: .line 76
            aload 1 /* visitor */
            aload 0 /* this */
            aload 2 /* scope */
            invokevirtual org.eclipse.jdt.internal.compiler.ASTVisitor.visit:(Lorg/eclipse/jdt/internal/compiler/ast/PostfixExpression;Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;)Z
            ifeq 2
         1: .line 77
            aload 0 /* this */
            getfield org.eclipse.jdt.internal.compiler.ast.PostfixExpression.lhs:Lorg/eclipse/jdt/internal/compiler/ast/Expression;
            aload 1 /* visitor */
            aload 2 /* scope */
            invokevirtual org.eclipse.jdt.internal.compiler.ast.Expression.traverse:(Lorg/eclipse/jdt/internal/compiler/ASTVisitor;Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;)V
         2: .line 79
      StackMap locals:
      StackMap stack:
            aload 1 /* visitor */
            aload 0 /* this */
            aload 2 /* scope */
            invokevirtual org.eclipse.jdt.internal.compiler.ASTVisitor.endVisit:(Lorg/eclipse/jdt/internal/compiler/ast/PostfixExpression;Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;)V
         3: .line 80
            return
        end local 2 // org.eclipse.jdt.internal.compiler.lookup.BlockScope scope
        end local 1 // org.eclipse.jdt.internal.compiler.ASTVisitor visitor
        end local 0 // org.eclipse.jdt.internal.compiler.ast.PostfixExpression this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    4     0     this  Lorg/eclipse/jdt/internal/compiler/ast/PostfixExpression;
            0    4     1  visitor  Lorg/eclipse/jdt/internal/compiler/ASTVisitor;
            0    4     2    scope  Lorg/eclipse/jdt/internal/compiler/lookup/BlockScope;
    MethodParameters:
         Name  Flags
      visitor  
      scope    
}
SourceFile: "PostfixExpression.java"