abstract class com.sun.tools.jdi.MirrorImpl implements com.sun.jdi.Mirror
  minor version: 0
  major version: 59
  flags: flags: (0x0420) ACC_SUPER, ACC_ABSTRACT
  this_class: com.sun.tools.jdi.MirrorImpl
  super_class: java.lang.Object
{
  protected com.sun.tools.jdi.VirtualMachineImpl vm;
    descriptor: Lcom/sun/tools/jdi/VirtualMachineImpl;
    flags: (0x0004) ACC_PROTECTED

  void <init>(com.sun.jdi.VirtualMachine);
    descriptor: (Lcom/sun/jdi/VirtualMachine;)V
    flags: (0x0000) 
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.sun.tools.jdi.MirrorImpl this
        start local 1 // com.sun.jdi.VirtualMachine aVm
         0: .line 40
            aload 0 /* this */
            invokespecial java.lang.Object.<init>:()V
         1: .line 45
            aload 0 /* this */
            aload 1 /* aVm */
            checkcast com.sun.tools.jdi.VirtualMachineImpl
            putfield com.sun.tools.jdi.MirrorImpl.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
         2: .line 46
            return
        end local 1 // com.sun.jdi.VirtualMachine aVm
        end local 0 // com.sun.tools.jdi.MirrorImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/sun/tools/jdi/MirrorImpl;
            0    3     1   aVm  Lcom/sun/jdi/VirtualMachine;
    MethodParameters:
      Name  Flags
      aVm   

  public com.sun.jdi.VirtualMachine virtualMachine();
    descriptor: ()Lcom/sun/jdi/VirtualMachine;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.jdi.MirrorImpl this
         0: .line 49
            aload 0 /* this */
            getfield com.sun.tools.jdi.MirrorImpl.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
            areturn
        end local 0 // com.sun.tools.jdi.MirrorImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/jdi/MirrorImpl;

  public boolean equals(java.lang.Object);
    descriptor: (Ljava/lang/Object;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=3, args_size=2
        start local 0 // com.sun.tools.jdi.MirrorImpl this
        start local 1 // java.lang.Object obj
         0: .line 53
            aload 1 /* obj */
            ifnull 3
            aload 1 /* obj */
            instanceof com.sun.jdi.Mirror
            ifeq 3
         1: .line 54
            aload 1 /* obj */
            checkcast com.sun.jdi.Mirror
            astore 2 /* other */
        start local 2 // com.sun.jdi.Mirror other
         2: .line 55
            aload 0 /* this */
            getfield com.sun.tools.jdi.MirrorImpl.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
            aload 2 /* other */
            invokeinterface com.sun.jdi.Mirror.virtualMachine:()Lcom/sun/jdi/VirtualMachine;
            invokevirtual com.sun.tools.jdi.VirtualMachineImpl.equals:(Ljava/lang/Object;)Z
            ireturn
        end local 2 // com.sun.jdi.Mirror other
         3: .line 57
      StackMap locals:
      StackMap stack:
            iconst_0
            ireturn
        end local 1 // java.lang.Object obj
        end local 0 // com.sun.tools.jdi.MirrorImpl this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    4     0   this  Lcom/sun/tools/jdi/MirrorImpl;
            0    4     1    obj  Ljava/lang/Object;
            2    3     2  other  Lcom/sun/jdi/Mirror;
    MethodParameters:
      Name  Flags
      obj   

  public int hashCode();
    descriptor: ()I
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.sun.tools.jdi.MirrorImpl this
         0: .line 62
            aload 0 /* this */
            getfield com.sun.tools.jdi.MirrorImpl.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
            invokevirtual com.sun.tools.jdi.VirtualMachineImpl.hashCode:()I
            ireturn
        end local 0 // com.sun.tools.jdi.MirrorImpl this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/sun/tools/jdi/MirrorImpl;

  void validateMirror(com.sun.jdi.Mirror);
    descriptor: (Lcom/sun/jdi/Mirror;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.tools.jdi.MirrorImpl this
        start local 1 // com.sun.jdi.Mirror mirror
         0: .line 70
            aload 0 /* this */
            getfield com.sun.tools.jdi.MirrorImpl.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
            aload 1 /* mirror */
            invokeinterface com.sun.jdi.Mirror.virtualMachine:()Lcom/sun/jdi/VirtualMachine;
            invokevirtual com.sun.tools.jdi.VirtualMachineImpl.equals:(Ljava/lang/Object;)Z
            ifne 2
         1: .line 71
            new com.sun.jdi.VMMismatchException
            dup
            aload 1 /* mirror */
            invokeinterface com.sun.jdi.Mirror.toString:()Ljava/lang/String;
            invokespecial com.sun.jdi.VMMismatchException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 73
      StackMap locals:
      StackMap stack:
            return
        end local 1 // com.sun.jdi.Mirror mirror
        end local 0 // com.sun.tools.jdi.MirrorImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/sun/tools/jdi/MirrorImpl;
            0    3     1  mirror  Lcom/sun/jdi/Mirror;
    MethodParameters:
        Name  Flags
      mirror  

  void validateMirrorOrNull(com.sun.jdi.Mirror);
    descriptor: (Lcom/sun/jdi/Mirror;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // com.sun.tools.jdi.MirrorImpl this
        start local 1 // com.sun.jdi.Mirror mirror
         0: .line 80
            aload 1 /* mirror */
            ifnull 2
            aload 0 /* this */
            getfield com.sun.tools.jdi.MirrorImpl.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
            aload 1 /* mirror */
            invokeinterface com.sun.jdi.Mirror.virtualMachine:()Lcom/sun/jdi/VirtualMachine;
            invokevirtual com.sun.tools.jdi.VirtualMachineImpl.equals:(Ljava/lang/Object;)Z
            ifne 2
         1: .line 81
            new com.sun.jdi.VMMismatchException
            dup
            aload 1 /* mirror */
            invokeinterface com.sun.jdi.Mirror.toString:()Ljava/lang/String;
            invokespecial com.sun.jdi.VMMismatchException.<init>:(Ljava/lang/String;)V
            athrow
         2: .line 83
      StackMap locals:
      StackMap stack:
            return
        end local 1 // com.sun.jdi.Mirror mirror
        end local 0 // com.sun.tools.jdi.MirrorImpl this
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    3     0    this  Lcom/sun/tools/jdi/MirrorImpl;
            0    3     1  mirror  Lcom/sun/jdi/Mirror;
    MethodParameters:
        Name  Flags
      mirror  

  void validateMirrors(java.util.Collection<? extends com.sun.jdi.Mirror>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.sun.tools.jdi.MirrorImpl this
        start local 1 // java.util.Collection mirrors
         0: .line 90
            aload 1 /* mirrors */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 2 /* iter */
        start local 2 // java.util.Iterator iter
         1: .line 91
            goto 5
         2: .line 92
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.sun.tools.jdi.MirrorImpl
            astore 3 /* mirror */
        start local 3 // com.sun.tools.jdi.MirrorImpl mirror
         3: .line 93
            aload 0 /* this */
            getfield com.sun.tools.jdi.MirrorImpl.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
            aload 3 /* mirror */
            getfield com.sun.tools.jdi.MirrorImpl.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
            invokevirtual com.sun.tools.jdi.VirtualMachineImpl.equals:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 94
            new com.sun.jdi.VMMismatchException
            dup
            aload 3 /* mirror */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokespecial com.sun.jdi.VMMismatchException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // com.sun.tools.jdi.MirrorImpl mirror
         5: .line 91
      StackMap locals:
      StackMap stack:
            aload 2 /* iter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 97
            return
        end local 2 // java.util.Iterator iter
        end local 1 // java.util.Collection mirrors
        end local 0 // com.sun.tools.jdi.MirrorImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lcom/sun/tools/jdi/MirrorImpl;
            0    7     1  mirrors  Ljava/util/Collection<+Lcom/sun/jdi/Mirror;>;
            1    7     2     iter  Ljava/util/Iterator<+Lcom/sun/jdi/Mirror;>;
            3    5     3   mirror  Lcom/sun/tools/jdi/MirrorImpl;
    Signature: (Ljava/util/Collection<+Lcom/sun/jdi/Mirror;>;)V
    MethodParameters:
         Name  Flags
      mirrors  

  void validateMirrorsOrNulls(java.util.Collection<? extends com.sun.jdi.Mirror>);
    descriptor: (Ljava/util/Collection;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // com.sun.tools.jdi.MirrorImpl this
        start local 1 // java.util.Collection mirrors
         0: .line 104
            aload 1 /* mirrors */
            invokeinterface java.util.Collection.iterator:()Ljava/util/Iterator;
            astore 2 /* iter */
        start local 2 // java.util.Iterator iter
         1: .line 105
            goto 5
         2: .line 106
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 2 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast com.sun.tools.jdi.MirrorImpl
            astore 3 /* mirror */
        start local 3 // com.sun.tools.jdi.MirrorImpl mirror
         3: .line 107
            aload 3 /* mirror */
            ifnull 5
            aload 0 /* this */
            getfield com.sun.tools.jdi.MirrorImpl.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
            aload 3 /* mirror */
            getfield com.sun.tools.jdi.MirrorImpl.vm:Lcom/sun/tools/jdi/VirtualMachineImpl;
            invokevirtual com.sun.tools.jdi.VirtualMachineImpl.equals:(Ljava/lang/Object;)Z
            ifne 5
         4: .line 108
            new com.sun.jdi.VMMismatchException
            dup
            aload 3 /* mirror */
            invokevirtual java.lang.Object.toString:()Ljava/lang/String;
            invokespecial com.sun.jdi.VMMismatchException.<init>:(Ljava/lang/String;)V
            athrow
        end local 3 // com.sun.tools.jdi.MirrorImpl mirror
         5: .line 105
      StackMap locals:
      StackMap stack:
            aload 2 /* iter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 111
            return
        end local 2 // java.util.Iterator iter
        end local 1 // java.util.Collection mirrors
        end local 0 // com.sun.tools.jdi.MirrorImpl this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    7     0     this  Lcom/sun/tools/jdi/MirrorImpl;
            0    7     1  mirrors  Ljava/util/Collection<+Lcom/sun/jdi/Mirror;>;
            1    7     2     iter  Ljava/util/Iterator<+Lcom/sun/jdi/Mirror;>;
            3    5     3   mirror  Lcom/sun/tools/jdi/MirrorImpl;
    Signature: (Ljava/util/Collection<+Lcom/sun/jdi/Mirror;>;)V
    MethodParameters:
         Name  Flags
      mirrors  
}
SourceFile: "MirrorImpl.java"