public class com.oracle.truffle.llvm.runtime.LLVMLocalScope extends com.oracle.truffle.llvm.runtime.LLVMScope
  minor version: 0
  major version: 59
  flags: flags: (0x0021) ACC_PUBLIC, ACC_SUPER
  this_class: com.oracle.truffle.llvm.runtime.LLVMLocalScope
  super_class: com.oracle.truffle.llvm.runtime.LLVMScope
{
  private final org.graalvm.collections.EconomicSet<java.lang.Integer> ids;
    descriptor: Lorg/graalvm/collections/EconomicSet;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Lorg/graalvm/collections/EconomicSet<Ljava/lang/Integer;>;

  public void <init>();
    descriptor: ()V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=1, args_size=1
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLocalScope this
         0: .line 50
            aload 0 /* this */
            invokespecial com.oracle.truffle.llvm.runtime.LLVMScope.<init>:()V
         1: .line 51
            aload 0 /* this */
            invokestatic org.graalvm.collections.EconomicSet.create:()Lorg/graalvm/collections/EconomicSet;
            putfield com.oracle.truffle.llvm.runtime.LLVMLocalScope.ids:Lorg/graalvm/collections/EconomicSet;
         2: .line 52
            return
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLocalScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    3     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLocalScope;

  public void addID(int);
    descriptor: (I)V
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLocalScope this
        start local 1 // int id
         0: .line 55
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLocalScope.ids:Lorg/graalvm/collections/EconomicSet;
            iload 1 /* id */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface org.graalvm.collections.EconomicSet.add:(Ljava/lang/Object;)Z
            pop
         1: .line 56
            return
        end local 1 // int id
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLocalScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLocalScope;
            0    2     1    id  I
    MethodParameters:
      Name  Flags
      id    

  public boolean containID(int);
    descriptor: (I)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // com.oracle.truffle.llvm.runtime.LLVMLocalScope this
        start local 1 // int id
         0: .line 59
            aload 0 /* this */
            getfield com.oracle.truffle.llvm.runtime.LLVMLocalScope.ids:Lorg/graalvm/collections/EconomicSet;
            iload 1 /* id */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface org.graalvm.collections.EconomicSet.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // int id
        end local 0 // com.oracle.truffle.llvm.runtime.LLVMLocalScope this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/llvm/runtime/LLVMLocalScope;
            0    1     1    id  I
    MethodParameters:
      Name  Flags
      id    
}
SourceFile: "LLVMLocalScope.java"