final class jdk.nashorn.internal.codegen.FindScopeDepths extends jdk.nashorn.internal.ir.visitor.SimpleNodeVisitor implements jdk.nashorn.internal.runtime.logging.Loggable
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: jdk.nashorn.internal.codegen.FindScopeDepths
  super_class: jdk.nashorn.internal.ir.visitor.SimpleNodeVisitor
{
  private final jdk.nashorn.internal.codegen.Compiler compiler;
    descriptor: Ljdk/nashorn/internal/codegen/Compiler;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private final java.util.Map<java.lang.Integer, java.util.Map<java.lang.Integer, jdk.nashorn.internal.runtime.RecompilableScriptFunctionData>> fnIdToNestedFunctions;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/Integer;Ljava/util/Map<Ljava/lang/Integer;Ljdk/nashorn/internal/runtime/RecompilableScriptFunctionData;>;>;

  private final java.util.Map<java.lang.Integer, java.util.Map<java.lang.String, java.lang.Integer>> externalSymbolDepths;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/Integer;Ljava/util/Map<Ljava/lang/String;Ljava/lang/Integer;>;>;

  private final java.util.Map<java.lang.Integer, java.util.Set<java.lang.String>> internalSymbols;
    descriptor: Ljava/util/Map;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Map<Ljava/lang/Integer;Ljava/util/Set<Ljava/lang/String;>;>;

  private final java.util.Set<jdk.nashorn.internal.ir.Block> withBodies;
    descriptor: Ljava/util/Set;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL
    Signature: Ljava/util/Set<Ljdk/nashorn/internal/ir/Block;>;

  private final jdk.nashorn.internal.runtime.logging.DebugLogger log;
    descriptor: Ljdk/nashorn/internal/runtime/logging/DebugLogger;
    flags: (0x0012) ACC_PRIVATE, ACC_FINAL

  private int dynamicScopeCount;
    descriptor: I
    flags: (0x0002) ACC_PRIVATE

  static final boolean $assertionsDisabled;
    descriptor: Z
    flags: (0x1018) ACC_STATIC, ACC_FINAL, ACC_SYNTHETIC

  static void <clinit>();
    descriptor: ()V
    flags: (0x0008) ACC_STATIC
    Code:
      stack=1, locals=0, args_size=0
         0: .line 56
            ldc Ljdk/nashorn/internal/codegen/FindScopeDepths;
            invokevirtual java.lang.Class.desiredAssertionStatus:()Z
            ifne 1
            iconst_1
            goto 2
      StackMap locals:
      StackMap stack:
         1: iconst_0
      StackMap locals:
      StackMap stack: int
         2: putstatic jdk.nashorn.internal.codegen.FindScopeDepths.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>(jdk.nashorn.internal.codegen.Compiler);
    descriptor: (Ljdk/nashorn/internal/codegen/Compiler;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.codegen.Compiler compiler
         0: .line 68
            aload 0 /* this */
            invokespecial jdk.nashorn.internal.ir.visitor.SimpleNodeVisitor.<init>:()V
         1: .line 59
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield jdk.nashorn.internal.codegen.FindScopeDepths.fnIdToNestedFunctions:Ljava/util/Map;
         2: .line 60
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield jdk.nashorn.internal.codegen.FindScopeDepths.externalSymbolDepths:Ljava/util/Map;
         3: .line 61
            aload 0 /* this */
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            putfield jdk.nashorn.internal.codegen.FindScopeDepths.internalSymbols:Ljava/util/Map;
         4: .line 62
            aload 0 /* this */
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            putfield jdk.nashorn.internal.codegen.FindScopeDepths.withBodies:Ljava/util/Set;
         5: .line 69
            aload 0 /* this */
            aload 1 /* compiler */
            putfield jdk.nashorn.internal.codegen.FindScopeDepths.compiler:Ljdk/nashorn/internal/codegen/Compiler;
         6: .line 70
            aload 0 /* this */
            aload 0 /* this */
            aload 1 /* compiler */
            invokevirtual jdk.nashorn.internal.codegen.Compiler.getContext:()Ljdk/nashorn/internal/runtime/Context;
            invokevirtual jdk.nashorn.internal.codegen.FindScopeDepths.initLogger:(Ljdk/nashorn/internal/runtime/Context;)Ljdk/nashorn/internal/runtime/logging/DebugLogger;
            putfield jdk.nashorn.internal.codegen.FindScopeDepths.log:Ljdk/nashorn/internal/runtime/logging/DebugLogger;
         7: .line 71
            return
        end local 1 // jdk.nashorn.internal.codegen.Compiler compiler
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot      Name  Signature
            0    8     0      this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0    8     1  compiler  Ljdk/nashorn/internal/codegen/Compiler;
    MethodParameters:
          Name  Flags
      compiler  final

  public jdk.nashorn.internal.runtime.logging.DebugLogger getLogger();
    descriptor: ()Ljdk/nashorn/internal/runtime/logging/DebugLogger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
         0: .line 75
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.log:Ljdk/nashorn/internal/runtime/logging/DebugLogger;
            areturn
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Ljdk/nashorn/internal/codegen/FindScopeDepths;

  public jdk.nashorn.internal.runtime.logging.DebugLogger initLogger(jdk.nashorn.internal.runtime.Context);
    descriptor: (Ljdk/nashorn/internal/runtime/Context;)Ljdk/nashorn/internal/runtime/logging/DebugLogger;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.runtime.Context context
         0: .line 80
            aload 1 /* context */
            aload 0 /* this */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            invokevirtual jdk.nashorn.internal.runtime.Context.getLogger:(Ljava/lang/Class;)Ljdk/nashorn/internal/runtime/logging/DebugLogger;
            areturn
        end local 1 // jdk.nashorn.internal.runtime.Context context
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot     Name  Signature
            0    1     0     this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0    1     1  context  Ljdk/nashorn/internal/runtime/Context;
    MethodParameters:
         Name  Flags
      context  final

  static int findScopesToStart(jdk.nashorn.internal.ir.LexicalContext, jdk.nashorn.internal.ir.FunctionNode, jdk.nashorn.internal.ir.Block);
    descriptor: (Ljdk/nashorn/internal/ir/LexicalContext;Ljdk/nashorn/internal/ir/FunctionNode;Ljdk/nashorn/internal/ir/Block;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=7, args_size=3
        start local 0 // jdk.nashorn.internal.ir.LexicalContext lc
        start local 1 // jdk.nashorn.internal.ir.FunctionNode fn
        start local 2 // jdk.nashorn.internal.ir.Block block
         0: .line 84
            aload 0 /* lc */
            aload 1 /* fn */
            aload 2 /* block */
            invokestatic jdk.nashorn.internal.codegen.FindScopeDepths.findBodyBlock:(Ljdk/nashorn/internal/ir/LexicalContext;Ljdk/nashorn/internal/ir/FunctionNode;Ljdk/nashorn/internal/ir/Block;)Ljdk/nashorn/internal/ir/Block;
            astore 3 /* bodyBlock */
        start local 3 // jdk.nashorn.internal.ir.Block bodyBlock
         1: .line 85
            aload 0 /* lc */
            aload 2 /* block */
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.getBlocks:(Ljdk/nashorn/internal/ir/Block;)Ljava/util/Iterator;
            astore 4 /* iter */
        start local 4 // java.util.Iterator iter
         2: .line 86
            aload 4 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jdk.nashorn.internal.ir.Block
            astore 5 /* b */
        start local 5 // jdk.nashorn.internal.ir.Block b
         3: .line 87
            iconst_0
            istore 6 /* scopesToStart */
        start local 6 // int scopesToStart
         4: .line 89
      StackMap locals: jdk.nashorn.internal.ir.LexicalContext jdk.nashorn.internal.ir.FunctionNode jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.Block java.util.Iterator jdk.nashorn.internal.ir.Block int
      StackMap stack:
            aload 5 /* b */
            invokevirtual jdk.nashorn.internal.ir.Block.needsScope:()Z
            ifeq 6
         5: .line 90
            iinc 6 /* scopesToStart */ 1
         6: .line 92
      StackMap locals:
      StackMap stack:
            aload 5 /* b */
            aload 3 /* bodyBlock */
            if_acmpne 8
         7: .line 93
            goto 10
         8: .line 95
      StackMap locals:
      StackMap stack:
            aload 4 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jdk.nashorn.internal.ir.Block
            astore 5 /* b */
         9: .line 88
            goto 4
        10: .line 97
      StackMap locals:
      StackMap stack:
            iload 6 /* scopesToStart */
            ireturn
        end local 6 // int scopesToStart
        end local 5 // jdk.nashorn.internal.ir.Block b
        end local 4 // java.util.Iterator iter
        end local 3 // jdk.nashorn.internal.ir.Block bodyBlock
        end local 2 // jdk.nashorn.internal.ir.Block block
        end local 1 // jdk.nashorn.internal.ir.FunctionNode fn
        end local 0 // jdk.nashorn.internal.ir.LexicalContext lc
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   11     0             lc  Ljdk/nashorn/internal/ir/LexicalContext;
            0   11     1             fn  Ljdk/nashorn/internal/ir/FunctionNode;
            0   11     2          block  Ljdk/nashorn/internal/ir/Block;
            1   11     3      bodyBlock  Ljdk/nashorn/internal/ir/Block;
            2   11     4           iter  Ljava/util/Iterator<Ljdk/nashorn/internal/ir/Block;>;
            3   11     5              b  Ljdk/nashorn/internal/ir/Block;
            4   11     6  scopesToStart  I
    MethodParameters:
       Name  Flags
      lc     final
      fn     final
      block  final

  static int findInternalDepth(jdk.nashorn.internal.ir.LexicalContext, jdk.nashorn.internal.ir.FunctionNode, jdk.nashorn.internal.ir.Block, jdk.nashorn.internal.ir.Symbol);
    descriptor: (Ljdk/nashorn/internal/ir/LexicalContext;Ljdk/nashorn/internal/ir/FunctionNode;Ljdk/nashorn/internal/ir/Block;Ljdk/nashorn/internal/ir/Symbol;)I
    flags: (0x0008) ACC_STATIC
    Code:
      stack=3, locals=8, args_size=4
        start local 0 // jdk.nashorn.internal.ir.LexicalContext lc
        start local 1 // jdk.nashorn.internal.ir.FunctionNode fn
        start local 2 // jdk.nashorn.internal.ir.Block block
        start local 3 // jdk.nashorn.internal.ir.Symbol symbol
         0: .line 101
            aload 0 /* lc */
            aload 1 /* fn */
            aload 2 /* block */
            invokestatic jdk.nashorn.internal.codegen.FindScopeDepths.findBodyBlock:(Ljdk/nashorn/internal/ir/LexicalContext;Ljdk/nashorn/internal/ir/FunctionNode;Ljdk/nashorn/internal/ir/Block;)Ljdk/nashorn/internal/ir/Block;
            astore 4 /* bodyBlock */
        start local 4 // jdk.nashorn.internal.ir.Block bodyBlock
         1: .line 102
            aload 0 /* lc */
            aload 2 /* block */
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.getBlocks:(Ljdk/nashorn/internal/ir/Block;)Ljava/util/Iterator;
            astore 5 /* iter */
        start local 5 // java.util.Iterator iter
         2: .line 103
            aload 5 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jdk.nashorn.internal.ir.Block
            astore 6 /* b */
        start local 6 // jdk.nashorn.internal.ir.Block b
         3: .line 104
            iconst_0
            istore 7 /* scopesToStart */
        start local 7 // int scopesToStart
         4: .line 106
      StackMap locals: jdk.nashorn.internal.ir.LexicalContext jdk.nashorn.internal.ir.FunctionNode jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.Symbol jdk.nashorn.internal.ir.Block java.util.Iterator jdk.nashorn.internal.ir.Block int
      StackMap stack:
            aload 6 /* b */
            aload 3 /* symbol */
            invokestatic jdk.nashorn.internal.codegen.FindScopeDepths.definedInBlock:(Ljdk/nashorn/internal/ir/Block;Ljdk/nashorn/internal/ir/Symbol;)Z
            ifeq 6
         5: .line 107
            iload 7 /* scopesToStart */
            ireturn
         6: .line 109
      StackMap locals:
      StackMap stack:
            aload 6 /* b */
            invokevirtual jdk.nashorn.internal.ir.Block.needsScope:()Z
            ifeq 8
         7: .line 110
            iinc 7 /* scopesToStart */ 1
         8: .line 112
      StackMap locals:
      StackMap stack:
            aload 6 /* b */
            aload 4 /* bodyBlock */
            if_acmpne 10
         9: .line 113
            goto 12
        10: .line 115
      StackMap locals:
      StackMap stack:
            aload 5 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jdk.nashorn.internal.ir.Block
            astore 6 /* b */
        11: .line 105
            goto 4
        12: .line 117
      StackMap locals:
      StackMap stack:
            iconst_m1
            ireturn
        end local 7 // int scopesToStart
        end local 6 // jdk.nashorn.internal.ir.Block b
        end local 5 // java.util.Iterator iter
        end local 4 // jdk.nashorn.internal.ir.Block bodyBlock
        end local 3 // jdk.nashorn.internal.ir.Symbol symbol
        end local 2 // jdk.nashorn.internal.ir.Block block
        end local 1 // jdk.nashorn.internal.ir.FunctionNode fn
        end local 0 // jdk.nashorn.internal.ir.LexicalContext lc
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   13     0             lc  Ljdk/nashorn/internal/ir/LexicalContext;
            0   13     1             fn  Ljdk/nashorn/internal/ir/FunctionNode;
            0   13     2          block  Ljdk/nashorn/internal/ir/Block;
            0   13     3         symbol  Ljdk/nashorn/internal/ir/Symbol;
            1   13     4      bodyBlock  Ljdk/nashorn/internal/ir/Block;
            2   13     5           iter  Ljava/util/Iterator<Ljdk/nashorn/internal/ir/Block;>;
            3   13     6              b  Ljdk/nashorn/internal/ir/Block;
            4   13     7  scopesToStart  I
    MethodParameters:
        Name  Flags
      lc      final
      fn      final
      block   final
      symbol  final

  private static boolean definedInBlock(jdk.nashorn.internal.ir.Block, jdk.nashorn.internal.ir.Symbol);
    descriptor: (Ljdk/nashorn/internal/ir/Block;Ljdk/nashorn/internal/ir/Symbol;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.ir.Block block
        start local 1 // jdk.nashorn.internal.ir.Symbol symbol
         0: .line 121
            aload 1 /* symbol */
            invokevirtual jdk.nashorn.internal.ir.Symbol.isGlobal:()Z
            ifeq 2
         1: .line 124
            aload 0 /* block */
            invokevirtual jdk.nashorn.internal.ir.Block.isGlobalScope:()Z
            ireturn
         2: .line 126
      StackMap locals:
      StackMap stack:
            aload 0 /* block */
            aload 1 /* symbol */
            invokevirtual jdk.nashorn.internal.ir.Symbol.getName:()Ljava/lang/String;
            invokevirtual jdk.nashorn.internal.ir.Block.getExistingSymbol:(Ljava/lang/String;)Ljdk/nashorn/internal/ir/Symbol;
            aload 1 /* symbol */
            if_acmpne 3
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         3: iconst_0
            ireturn
        end local 1 // jdk.nashorn.internal.ir.Symbol symbol
        end local 0 // jdk.nashorn.internal.ir.Block block
      LocalVariableTable:
        Start  End  Slot    Name  Signature
            0    4     0   block  Ljdk/nashorn/internal/ir/Block;
            0    4     1  symbol  Ljdk/nashorn/internal/ir/Symbol;
    MethodParameters:
        Name  Flags
      block   final
      symbol  final

  static jdk.nashorn.internal.ir.Block findBodyBlock(jdk.nashorn.internal.ir.LexicalContext, jdk.nashorn.internal.ir.FunctionNode, jdk.nashorn.internal.ir.Block);
    descriptor: (Ljdk/nashorn/internal/ir/LexicalContext;Ljdk/nashorn/internal/ir/FunctionNode;Ljdk/nashorn/internal/ir/Block;)Ljdk/nashorn/internal/ir/Block;
    flags: (0x0008) ACC_STATIC
    Code:
      stack=2, locals=5, args_size=3
        start local 0 // jdk.nashorn.internal.ir.LexicalContext lc
        start local 1 // jdk.nashorn.internal.ir.FunctionNode fn
        start local 2 // jdk.nashorn.internal.ir.Block block
         0: .line 130
            aload 0 /* lc */
            aload 2 /* block */
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.getBlocks:(Ljdk/nashorn/internal/ir/Block;)Ljava/util/Iterator;
            astore 3 /* iter */
        start local 3 // java.util.Iterator iter
         1: .line 131
            goto 5
         2: .line 132
      StackMap locals: java.util.Iterator
      StackMap stack:
            aload 3 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jdk.nashorn.internal.ir.Block
            astore 4 /* next */
        start local 4 // jdk.nashorn.internal.ir.Block next
         3: .line 133
            aload 1 /* fn */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getBody:()Ljdk/nashorn/internal/ir/Block;
            aload 4 /* next */
            if_acmpne 5
         4: .line 134
            aload 4 /* next */
            areturn
        end local 4 // jdk.nashorn.internal.ir.Block next
         5: .line 131
      StackMap locals:
      StackMap stack:
            aload 3 /* iter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 2
         6: .line 137
            aconst_null
            areturn
        end local 3 // java.util.Iterator iter
        end local 2 // jdk.nashorn.internal.ir.Block block
        end local 1 // jdk.nashorn.internal.ir.FunctionNode fn
        end local 0 // jdk.nashorn.internal.ir.LexicalContext lc
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    7     0     lc  Ljdk/nashorn/internal/ir/LexicalContext;
            0    7     1     fn  Ljdk/nashorn/internal/ir/FunctionNode;
            0    7     2  block  Ljdk/nashorn/internal/ir/Block;
            1    7     3   iter  Ljava/util/Iterator<Ljdk/nashorn/internal/ir/Block;>;
            3    5     4   next  Ljdk/nashorn/internal/ir/Block;
    MethodParameters:
       Name  Flags
      lc     final
      fn     final
      block  final

  private static jdk.nashorn.internal.ir.Block findGlobalBlock(jdk.nashorn.internal.ir.LexicalContext, jdk.nashorn.internal.ir.Block);
    descriptor: (Ljdk/nashorn/internal/ir/LexicalContext;Ljdk/nashorn/internal/ir/Block;)Ljdk/nashorn/internal/ir/Block;
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=2, locals=4, args_size=2
        start local 0 // jdk.nashorn.internal.ir.LexicalContext lc
        start local 1 // jdk.nashorn.internal.ir.Block block
         0: .line 141
            aload 0 /* lc */
            aload 1 /* block */
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.getBlocks:(Ljdk/nashorn/internal/ir/Block;)Ljava/util/Iterator;
            astore 2 /* iter */
        start local 2 // java.util.Iterator iter
         1: .line 142
            aconst_null
            astore 3 /* globalBlock */
        start local 3 // jdk.nashorn.internal.ir.Block globalBlock
         2: .line 143
            goto 4
         3: .line 144
      StackMap locals: java.util.Iterator jdk.nashorn.internal.ir.Block
      StackMap stack:
            aload 2 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jdk.nashorn.internal.ir.Block
            astore 3 /* globalBlock */
         4: .line 143
      StackMap locals:
      StackMap stack:
            aload 2 /* iter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 3
         5: .line 146
            aload 3 /* globalBlock */
            areturn
        end local 3 // jdk.nashorn.internal.ir.Block globalBlock
        end local 2 // java.util.Iterator iter
        end local 1 // jdk.nashorn.internal.ir.Block block
        end local 0 // jdk.nashorn.internal.ir.LexicalContext lc
      LocalVariableTable:
        Start  End  Slot         Name  Signature
            0    6     0           lc  Ljdk/nashorn/internal/ir/LexicalContext;
            0    6     1        block  Ljdk/nashorn/internal/ir/Block;
            1    6     2         iter  Ljava/util/Iterator<Ljdk/nashorn/internal/ir/Block;>;
            2    6     3  globalBlock  Ljdk/nashorn/internal/ir/Block;
    MethodParameters:
       Name  Flags
      lc     final
      block  final

  private static boolean isDynamicScopeBoundary(jdk.nashorn.internal.ir.FunctionNode);
    descriptor: (Ljdk/nashorn/internal/ir/FunctionNode;)Z
    flags: (0x000a) ACC_PRIVATE, ACC_STATIC
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.ir.FunctionNode fn
         0: .line 150
            aload 0 /* fn */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.needsDynamicScope:()Z
            ireturn
        end local 0 // jdk.nashorn.internal.ir.FunctionNode fn
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0    fn  Ljdk/nashorn/internal/ir/FunctionNode;
    MethodParameters:
      Name  Flags
      fn    final

  private boolean isDynamicScopeBoundary(jdk.nashorn.internal.ir.Block);
    descriptor: (Ljdk/nashorn/internal/ir/Block;)Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.ir.Block block
         0: .line 154
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.withBodies:Ljava/util/Set;
            aload 1 /* block */
            invokeinterface java.util.Set.contains:(Ljava/lang/Object;)Z
            ireturn
        end local 1 // jdk.nashorn.internal.ir.Block block
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    1     0   this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0    1     1  block  Ljdk/nashorn/internal/ir/Block;
    MethodParameters:
       Name  Flags
      block  final

  public boolean enterFunctionNode(jdk.nashorn.internal.ir.FunctionNode);
    descriptor: (Ljdk/nashorn/internal/ir/FunctionNode;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=3, locals=4, args_size=2
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.ir.FunctionNode functionNode
         0: .line 159
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.compiler:Ljdk/nashorn/internal/codegen/Compiler;
            invokevirtual jdk.nashorn.internal.codegen.Compiler.isOnDemandCompilation:()Z
            ifeq 2
         1: .line 160
            iconst_1
            ireturn
         2: .line 163
      StackMap locals:
      StackMap stack:
            aload 1 /* functionNode */
            invokestatic jdk.nashorn.internal.codegen.FindScopeDepths.isDynamicScopeBoundary:(Ljdk/nashorn/internal/ir/FunctionNode;)Z
            ifeq 4
         3: .line 164
            aload 0 /* this */
            aload 1 /* functionNode */
            invokevirtual jdk.nashorn.internal.codegen.FindScopeDepths.increaseDynamicScopeCount:(Ljdk/nashorn/internal/ir/Node;)V
         4: .line 167
      StackMap locals:
      StackMap stack:
            aload 1 /* functionNode */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getId:()I
            istore 2 /* fnId */
        start local 2 // int fnId
         5: .line 168
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.fnIdToNestedFunctions:Ljava/util/Map;
            iload 2 /* fnId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Map
            astore 3 /* nestedFunctions */
        start local 3 // java.util.Map nestedFunctions
         6: .line 169
            aload 3 /* nestedFunctions */
            ifnonnull 9
         7: .line 170
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 3 /* nestedFunctions */
         8: .line 171
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.fnIdToNestedFunctions:Ljava/util/Map;
            iload 2 /* fnId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 3 /* nestedFunctions */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         9: .line 174
      StackMap locals: int java.util.Map
      StackMap stack:
            iconst_1
            ireturn
        end local 3 // java.util.Map nestedFunctions
        end local 2 // int fnId
        end local 1 // jdk.nashorn.internal.ir.FunctionNode functionNode
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   10     0             this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0   10     1     functionNode  Ljdk/nashorn/internal/ir/FunctionNode;
            5   10     2             fnId  I
            6   10     3  nestedFunctions  Ljava/util/Map<Ljava/lang/Integer;Ljdk/nashorn/internal/runtime/RecompilableScriptFunctionData;>;
    MethodParameters:
              Name  Flags
      functionNode  final

  public jdk.nashorn.internal.ir.Node leaveFunctionNode(jdk.nashorn.internal.ir.FunctionNode);
    descriptor: (Ljdk/nashorn/internal/ir/FunctionNode;)Ljdk/nashorn/internal/ir/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=9, locals=8, args_size=2
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.ir.FunctionNode functionNode
         0: .line 180
            aload 1 /* functionNode */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getName:()Ljava/lang/String;
            astore 2 /* name */
        start local 2 // java.lang.String name
         1: .line 181
            aload 1 /* functionNode */
            astore 3 /* newFunctionNode */
        start local 3 // jdk.nashorn.internal.ir.FunctionNode newFunctionNode
         2: .line 182
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.compiler:Ljdk/nashorn/internal/codegen/Compiler;
            invokevirtual jdk.nashorn.internal.codegen.Compiler.isOnDemandCompilation:()Z
            ifeq 10
         3: .line 183
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.compiler:Ljdk/nashorn/internal/codegen/Compiler;
            aload 3 /* newFunctionNode */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getId:()I
            invokevirtual jdk.nashorn.internal.codegen.Compiler.getScriptFunctionData:(I)Ljdk/nashorn/internal/runtime/RecompilableScriptFunctionData;
            astore 4 /* data */
        start local 4 // jdk.nashorn.internal.runtime.RecompilableScriptFunctionData data
         4: .line 184
            aload 4 /* data */
            invokevirtual jdk.nashorn.internal.runtime.RecompilableScriptFunctionData.inDynamicContext:()Z
            ifeq 7
         5: .line 185
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.log:Ljdk/nashorn/internal/runtime/logging/DebugLogger;
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            ldc "Reviving scriptfunction "
            aastore
            dup
            iconst_1
            aload 2 /* name */
            invokestatic jdk.nashorn.internal.runtime.logging.DebugLogger.quote:(Ljava/lang/String;)Ljava/lang/String;
            aastore
            dup
            iconst_2
            ldc " as defined in previous (now lost) dynamic scope."
            aastore
            invokevirtual jdk.nashorn.internal.runtime.logging.DebugLogger.fine:([Ljava/lang/Object;)V
         6: .line 186
            aload 3 /* newFunctionNode */
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.setInDynamicContext:(Ljdk/nashorn/internal/ir/LexicalContext;)Ljdk/nashorn/internal/ir/FunctionNode;
            astore 3 /* newFunctionNode */
         7: .line 188
      StackMap locals: java.lang.String jdk.nashorn.internal.ir.FunctionNode jdk.nashorn.internal.runtime.RecompilableScriptFunctionData
      StackMap stack:
            aload 3 /* newFunctionNode */
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.getOutermostFunction:()Ljdk/nashorn/internal/ir/FunctionNode;
            if_acmpne 9
            aload 3 /* newFunctionNode */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.hasApplyToCallSpecialization:()Z
            ifne 9
         8: .line 189
            aload 4 /* data */
            aload 3 /* newFunctionNode */
            invokevirtual jdk.nashorn.internal.runtime.RecompilableScriptFunctionData.setCachedAst:(Ljdk/nashorn/internal/ir/FunctionNode;)V
         9: .line 191
      StackMap locals:
      StackMap stack:
            aload 3 /* newFunctionNode */
            areturn
        end local 4 // jdk.nashorn.internal.runtime.RecompilableScriptFunctionData data
        10: .line 194
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            invokevirtual jdk.nashorn.internal.codegen.FindScopeDepths.inDynamicScope:()Z
            ifeq 13
        11: .line 195
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.log:Ljdk/nashorn/internal/runtime/logging/DebugLogger;
            iconst_3
            anewarray java.lang.Object
            dup
            iconst_0
            ldc "Tagging "
            aastore
            dup
            iconst_1
            aload 2 /* name */
            invokestatic jdk.nashorn.internal.runtime.logging.DebugLogger.quote:(Ljava/lang/String;)Ljava/lang/String;
            aastore
            dup
            iconst_2
            ldc " as defined in dynamic scope"
            aastore
            invokevirtual jdk.nashorn.internal.runtime.logging.DebugLogger.fine:([Ljava/lang/Object;)V
        12: .line 196
            aload 3 /* newFunctionNode */
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.setInDynamicContext:(Ljdk/nashorn/internal/ir/LexicalContext;)Ljdk/nashorn/internal/ir/FunctionNode;
            astore 3 /* newFunctionNode */
        13: .line 200
      StackMap locals:
      StackMap stack:
            aload 3 /* newFunctionNode */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getId:()I
            istore 4 /* fnId */
        start local 4 // int fnId
        14: .line 201
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.fnIdToNestedFunctions:Ljava/util/Map;
            iload 4 /* fnId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.remove:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Map
            astore 5 /* nestedFunctions */
        start local 5 // java.util.Map nestedFunctions
        15: .line 203
            getstatic jdk.nashorn.internal.codegen.FindScopeDepths.$assertionsDisabled:Z
            ifne 16
            aload 5 /* nestedFunctions */
            ifnonnull 16
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        16: .line 205
      StackMap locals: int java.util.Map
      StackMap stack:
            new jdk.nashorn.internal.runtime.RecompilableScriptFunctionData
            dup
        17: .line 206
            aload 3 /* newFunctionNode */
        18: .line 207
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.compiler:Ljdk/nashorn/internal/codegen/Compiler;
            invokevirtual jdk.nashorn.internal.codegen.Compiler.getCodeInstaller:()Ljdk/nashorn/internal/runtime/CodeInstaller;
        19: .line 208
            aload 3 /* newFunctionNode */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getThisProperties:()I
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.compiler:Ljdk/nashorn/internal/codegen/Compiler;
            invokevirtual jdk.nashorn.internal.codegen.Compiler.getContext:()Ljdk/nashorn/internal/runtime/Context;
            invokevirtual jdk.nashorn.internal.runtime.Context.useDualFields:()Z
            invokestatic jdk.nashorn.internal.codegen.ObjectClassGenerator.createAllocationStrategy:(IZ)Ljdk/nashorn/internal/runtime/AllocationStrategy;
        20: .line 209
            aload 5 /* nestedFunctions */
        21: .line 210
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.externalSymbolDepths:Ljava/util/Map;
            iload 4 /* fnId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Map
        22: .line 211
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.internalSymbols:Ljava/util/Map;
            iload 4 /* fnId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Set
        23: .line 205
            invokespecial jdk.nashorn.internal.runtime.RecompilableScriptFunctionData.<init>:(Ljdk/nashorn/internal/ir/FunctionNode;Ljdk/nashorn/internal/runtime/CodeInstaller;Ljdk/nashorn/internal/runtime/AllocationStrategy;Ljava/util/Map;Ljava/util/Map;Ljava/util/Set;)V
            astore 6 /* data */
        start local 6 // jdk.nashorn.internal.runtime.RecompilableScriptFunctionData data
        24: .line 213
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.getOutermostFunction:()Ljdk/nashorn/internal/ir/FunctionNode;
            aload 3 /* newFunctionNode */
            if_acmpeq 29
        25: .line 214
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            aload 3 /* newFunctionNode */
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.getParentFunction:(Ljdk/nashorn/internal/ir/FunctionNode;)Ljdk/nashorn/internal/ir/FunctionNode;
            astore 7 /* parentFn */
        start local 7 // jdk.nashorn.internal.ir.FunctionNode parentFn
        26: .line 215
            aload 7 /* parentFn */
            ifnull 30
        27: .line 216
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.fnIdToNestedFunctions:Ljava/util/Map;
            aload 7 /* parentFn */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getId:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Map
            iload 4 /* fnId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 6 /* data */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        end local 7 // jdk.nashorn.internal.ir.FunctionNode parentFn
        28: .line 218
            goto 30
        29: .line 219
      StackMap locals: jdk.nashorn.internal.runtime.RecompilableScriptFunctionData
      StackMap stack:
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.compiler:Ljdk/nashorn/internal/codegen/Compiler;
            aload 6 /* data */
            invokevirtual jdk.nashorn.internal.codegen.Compiler.setData:(Ljdk/nashorn/internal/runtime/RecompilableScriptFunctionData;)V
        30: .line 222
      StackMap locals:
      StackMap stack:
            aload 1 /* functionNode */
            invokestatic jdk.nashorn.internal.codegen.FindScopeDepths.isDynamicScopeBoundary:(Ljdk/nashorn/internal/ir/FunctionNode;)Z
            ifeq 32
        31: .line 223
            aload 0 /* this */
            aload 1 /* functionNode */
            invokevirtual jdk.nashorn.internal.codegen.FindScopeDepths.decreaseDynamicScopeCount:(Ljdk/nashorn/internal/ir/Node;)V
        32: .line 226
      StackMap locals:
      StackMap stack:
            aload 3 /* newFunctionNode */
            areturn
        end local 6 // jdk.nashorn.internal.runtime.RecompilableScriptFunctionData data
        end local 5 // java.util.Map nestedFunctions
        end local 4 // int fnId
        end local 3 // jdk.nashorn.internal.ir.FunctionNode newFunctionNode
        end local 2 // java.lang.String name
        end local 1 // jdk.nashorn.internal.ir.FunctionNode functionNode
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot             Name  Signature
            0   33     0             this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0   33     1     functionNode  Ljdk/nashorn/internal/ir/FunctionNode;
            1   33     2             name  Ljava/lang/String;
            2   33     3  newFunctionNode  Ljdk/nashorn/internal/ir/FunctionNode;
            4   10     4             data  Ljdk/nashorn/internal/runtime/RecompilableScriptFunctionData;
           14   33     4             fnId  I
           15   33     5  nestedFunctions  Ljava/util/Map<Ljava/lang/Integer;Ljdk/nashorn/internal/runtime/RecompilableScriptFunctionData;>;
           24   33     6             data  Ljdk/nashorn/internal/runtime/RecompilableScriptFunctionData;
           26   28     7         parentFn  Ljdk/nashorn/internal/ir/FunctionNode;
    MethodParameters:
              Name  Flags
      functionNode  final

  private boolean inDynamicScope();
    descriptor: ()Z
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
         0: .line 230
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.dynamicScopeCount:I
            ifle 1
            iconst_1
            ireturn
      StackMap locals:
      StackMap stack:
         1: iconst_0
            ireturn
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/nashorn/internal/codegen/FindScopeDepths;

  private void increaseDynamicScopeCount(jdk.nashorn.internal.ir.Node);
    descriptor: (Ljdk/nashorn/internal/ir/Node;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.ir.Node node
         0: .line 234
            getstatic jdk.nashorn.internal.codegen.FindScopeDepths.$assertionsDisabled:Z
            ifne 1
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.dynamicScopeCount:I
            ifge 1
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         1: .line 235
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            dup
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.dynamicScopeCount:I
            iconst_1
            iadd
            putfield jdk.nashorn.internal.codegen.FindScopeDepths.dynamicScopeCount:I
         2: .line 236
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.log:Ljdk/nashorn/internal/runtime/logging/DebugLogger;
            invokevirtual jdk.nashorn.internal.runtime.logging.DebugLogger.isEnabled:()Z
            ifeq 4
         3: .line 237
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.log:Ljdk/nashorn/internal/runtime/logging/DebugLogger;
            bipush 6
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.getCurrentFunction:()Ljdk/nashorn/internal/ir/FunctionNode;
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getName:()Ljava/lang/String;
            invokestatic jdk.nashorn.internal.runtime.logging.DebugLogger.quote:(Ljava/lang/String;)Ljava/lang/String;
            aastore
            dup
            iconst_1
            ldc " ++dynamicScopeCount = "
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.dynamicScopeCount:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_3
            ldc " at: "
            aastore
            dup
            iconst_4
            aload 1 /* node */
            aastore
            dup
            iconst_5
            aload 1 /* node */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aastore
            invokevirtual jdk.nashorn.internal.runtime.logging.DebugLogger.finest:([Ljava/lang/Object;)V
         4: .line 239
      StackMap locals:
      StackMap stack:
            return
        end local 1 // jdk.nashorn.internal.ir.Node node
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0    5     1  node  Ljdk/nashorn/internal/ir/Node;
    MethodParameters:
      Name  Flags
      node  final

  private void decreaseDynamicScopeCount(jdk.nashorn.internal.ir.Node);
    descriptor: (Ljdk/nashorn/internal/ir/Node;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=5, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.ir.Node node
         0: .line 242
            aload 0 /* this */
            dup
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.dynamicScopeCount:I
            iconst_1
            isub
            putfield jdk.nashorn.internal.codegen.FindScopeDepths.dynamicScopeCount:I
         1: .line 243
            getstatic jdk.nashorn.internal.codegen.FindScopeDepths.$assertionsDisabled:Z
            ifne 2
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.dynamicScopeCount:I
            ifge 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 244
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.log:Ljdk/nashorn/internal/runtime/logging/DebugLogger;
            invokevirtual jdk.nashorn.internal.runtime.logging.DebugLogger.isEnabled:()Z
            ifeq 4
         3: .line 245
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.log:Ljdk/nashorn/internal/runtime/logging/DebugLogger;
            bipush 6
            anewarray java.lang.Object
            dup
            iconst_0
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.getCurrentFunction:()Ljdk/nashorn/internal/ir/FunctionNode;
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getName:()Ljava/lang/String;
            invokestatic jdk.nashorn.internal.runtime.logging.DebugLogger.quote:(Ljava/lang/String;)Ljava/lang/String;
            aastore
            dup
            iconst_1
            ldc " --dynamicScopeCount = "
            aastore
            dup
            iconst_2
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.dynamicScopeCount:I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aastore
            dup
            iconst_3
            ldc " at: "
            aastore
            dup
            iconst_4
            aload 1 /* node */
            aastore
            dup
            iconst_5
            aload 1 /* node */
            invokevirtual java.lang.Object.getClass:()Ljava/lang/Class;
            aastore
            invokevirtual jdk.nashorn.internal.runtime.logging.DebugLogger.finest:([Ljava/lang/Object;)V
         4: .line 247
      StackMap locals:
      StackMap stack:
            return
        end local 1 // jdk.nashorn.internal.ir.Node node
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    5     0  this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0    5     1  node  Ljdk/nashorn/internal/ir/Node;
    MethodParameters:
      Name  Flags
      node  final

  public boolean enterWithNode(jdk.nashorn.internal.ir.WithNode);
    descriptor: (Ljdk/nashorn/internal/ir/WithNode;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.ir.WithNode node
         0: .line 251
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.withBodies:Ljava/util/Set;
            aload 1 /* node */
            invokevirtual jdk.nashorn.internal.ir.WithNode.getBody:()Ljdk/nashorn/internal/ir/Block;
            invokeinterface java.util.Set.add:(Ljava/lang/Object;)Z
            pop
         1: .line 252
            iconst_1
            ireturn
        end local 1 // jdk.nashorn.internal.ir.WithNode node
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    2     0  this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0    2     1  node  Ljdk/nashorn/internal/ir/WithNode;
    MethodParameters:
      Name  Flags
      node  final

  public boolean enterBlock(jdk.nashorn.internal.ir.Block);
    descriptor: (Ljdk/nashorn/internal/ir/Block;)Z
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=5, locals=14, args_size=2
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.ir.Block block
         0: .line 257
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.compiler:Ljdk/nashorn/internal/codegen/Compiler;
            invokevirtual jdk.nashorn.internal.codegen.Compiler.isOnDemandCompilation:()Z
            ifeq 2
         1: .line 258
            iconst_1
            ireturn
         2: .line 261
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* block */
            invokevirtual jdk.nashorn.internal.codegen.FindScopeDepths.isDynamicScopeBoundary:(Ljdk/nashorn/internal/ir/Block;)Z
            ifeq 4
         3: .line 262
            aload 0 /* this */
            aload 1 /* block */
            invokevirtual jdk.nashorn.internal.codegen.FindScopeDepths.increaseDynamicScopeCount:(Ljdk/nashorn/internal/ir/Node;)V
         4: .line 265
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.isFunctionBody:()Z
            ifne 6
         5: .line 266
            iconst_1
            ireturn
         6: .line 271
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.getCurrentFunction:()Ljdk/nashorn/internal/ir/FunctionNode;
            astore 2 /* fn */
        start local 2 // jdk.nashorn.internal.ir.FunctionNode fn
         7: .line 274
            new java.util.HashSet
            dup
            invokespecial java.util.HashSet.<init>:()V
            astore 3 /* symbols */
        start local 3 // java.util.Set symbols
         8: .line 275
            aload 1 /* block */
            new jdk.nashorn.internal.codegen.FindScopeDepths$1
            dup
            aload 0 /* this */
            aload 3 /* symbols */
            invokespecial jdk.nashorn.internal.codegen.FindScopeDepths$1.<init>:(Ljdk/nashorn/internal/codegen/FindScopeDepths;Ljava/util/Set;)V
            invokevirtual jdk.nashorn.internal.ir.Block.accept:(Ljdk/nashorn/internal/ir/visitor/NodeVisitor;)Ljdk/nashorn/internal/ir/Node;
            pop
         9: .line 287
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 4 /* internals */
        start local 4 // java.util.Map internals
        10: .line 289
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            aload 1 /* block */
            invokestatic jdk.nashorn.internal.codegen.FindScopeDepths.findGlobalBlock:(Ljdk/nashorn/internal/ir/LexicalContext;Ljdk/nashorn/internal/ir/Block;)Ljdk/nashorn/internal/ir/Block;
            astore 5 /* globalBlock */
        start local 5 // jdk.nashorn.internal.ir.Block globalBlock
        11: .line 290
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            aload 2 /* fn */
            aload 1 /* block */
            invokestatic jdk.nashorn.internal.codegen.FindScopeDepths.findBodyBlock:(Ljdk/nashorn/internal/ir/LexicalContext;Ljdk/nashorn/internal/ir/FunctionNode;Ljdk/nashorn/internal/ir/Block;)Ljdk/nashorn/internal/ir/Block;
            astore 6 /* bodyBlock */
        start local 6 // jdk.nashorn.internal.ir.Block bodyBlock
        12: .line 292
            getstatic jdk.nashorn.internal.codegen.FindScopeDepths.$assertionsDisabled:Z
            ifne 13
            aload 5 /* globalBlock */
            ifnonnull 13
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        13: .line 293
      StackMap locals: jdk.nashorn.internal.codegen.FindScopeDepths jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.FunctionNode java.util.Set java.util.Map jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.Block
      StackMap stack:
            getstatic jdk.nashorn.internal.codegen.FindScopeDepths.$assertionsDisabled:Z
            ifne 14
            aload 6 /* bodyBlock */
            ifnonnull 14
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        14: .line 295
      StackMap locals:
      StackMap stack:
            aload 3 /* symbols */
            invokeinterface java.util.Set.iterator:()Ljava/util/Iterator;
            astore 8
            goto 33
      StackMap locals: jdk.nashorn.internal.codegen.FindScopeDepths jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.FunctionNode java.util.Set java.util.Map jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.Block top java.util.Iterator
      StackMap stack:
        15: aload 8
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jdk.nashorn.internal.ir.Symbol
            astore 7 /* symbol */
        start local 7 // jdk.nashorn.internal.ir.Symbol symbol
        16: .line 298
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            aload 2 /* fn */
            aload 1 /* block */
            aload 7 /* symbol */
            invokestatic jdk.nashorn.internal.codegen.FindScopeDepths.findInternalDepth:(Ljdk/nashorn/internal/ir/LexicalContext;Ljdk/nashorn/internal/ir/FunctionNode;Ljdk/nashorn/internal/ir/Block;Ljdk/nashorn/internal/ir/Symbol;)I
            istore 10 /* internalDepth */
        start local 10 // int internalDepth
        17: .line 299
            iload 10 /* internalDepth */
            iflt 18
            iconst_1
            goto 19
      StackMap locals: jdk.nashorn.internal.codegen.FindScopeDepths jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.FunctionNode java.util.Set java.util.Map jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.Symbol java.util.Iterator top int
      StackMap stack:
        18: iconst_0
      StackMap locals:
      StackMap stack: int
        19: istore 11 /* internal */
        start local 11 // boolean internal
        20: .line 300
            iload 11 /* internal */
            ifeq 22
        21: .line 301
            aload 4 /* internals */
            aload 7 /* symbol */
            invokevirtual jdk.nashorn.internal.ir.Symbol.getName:()Ljava/lang/String;
            iload 10 /* internalDepth */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
        22: .line 307
      StackMap locals: int
      StackMap stack:
            iload 11 /* internal */
            ifne 33
        23: .line 308
            iconst_0
            istore 12 /* depthAtStart */
        start local 12 // int depthAtStart
        24: .line 310
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.lc:Ljdk/nashorn/internal/ir/LexicalContext;
            aload 6 /* bodyBlock */
            invokevirtual jdk.nashorn.internal.ir.LexicalContext.getAncestorBlocks:(Ljdk/nashorn/internal/ir/Block;)Ljava/util/Iterator;
            astore 9 /* iter */
        start local 9 // java.util.Iterator iter
        25: .line 311
            goto 32
        26: .line 312
      StackMap locals: jdk.nashorn.internal.codegen.FindScopeDepths jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.FunctionNode java.util.Set java.util.Map jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.Symbol java.util.Iterator java.util.Iterator int int int
      StackMap stack:
            aload 9 /* iter */
            invokeinterface java.util.Iterator.next:()Ljava/lang/Object;
            checkcast jdk.nashorn.internal.ir.Block
            astore 13 /* b2 */
        start local 13 // jdk.nashorn.internal.ir.Block b2
        27: .line 313
            aload 13 /* b2 */
            aload 7 /* symbol */
            invokestatic jdk.nashorn.internal.codegen.FindScopeDepths.definedInBlock:(Ljdk/nashorn/internal/ir/Block;Ljdk/nashorn/internal/ir/Symbol;)Z
            ifeq 30
        28: .line 314
            aload 0 /* this */
            aload 2 /* fn */
            aload 7 /* symbol */
            iload 12 /* depthAtStart */
            invokevirtual jdk.nashorn.internal.codegen.FindScopeDepths.addExternalSymbol:(Ljdk/nashorn/internal/ir/FunctionNode;Ljdk/nashorn/internal/ir/Symbol;I)V
        29: .line 315
            goto 33
        30: .line 317
      StackMap locals: jdk.nashorn.internal.ir.Block
      StackMap stack:
            aload 13 /* b2 */
            invokevirtual jdk.nashorn.internal.ir.Block.needsScope:()Z
            ifeq 32
        31: .line 318
            iinc 12 /* depthAtStart */ 1
        end local 13 // jdk.nashorn.internal.ir.Block b2
        32: .line 311
      StackMap locals:
      StackMap stack:
            aload 9 /* iter */
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 26
        end local 12 // int depthAtStart
        end local 11 // boolean internal
        end local 10 // int internalDepth
        end local 9 // java.util.Iterator iter
        end local 7 // jdk.nashorn.internal.ir.Symbol symbol
        33: .line 295
      StackMap locals: jdk.nashorn.internal.codegen.FindScopeDepths jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.FunctionNode java.util.Set java.util.Map jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.Block top java.util.Iterator
      StackMap stack:
            aload 8
            invokeinterface java.util.Iterator.hasNext:()Z
            ifne 15
        34: .line 324
            aload 0 /* this */
            aload 2 /* fn */
            aload 4 /* internals */
            invokeinterface java.util.Map.keySet:()Ljava/util/Set;
            invokevirtual jdk.nashorn.internal.codegen.FindScopeDepths.addInternalSymbols:(Ljdk/nashorn/internal/ir/FunctionNode;Ljava/util/Set;)V
        35: .line 326
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.log:Ljdk/nashorn/internal/runtime/logging/DebugLogger;
            invokevirtual jdk.nashorn.internal.runtime.logging.DebugLogger.isEnabled:()Z
            ifeq 37
        36: .line 327
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.log:Ljdk/nashorn/internal/runtime/logging/DebugLogger;
            new java.lang.StringBuilder
            dup
            aload 2 /* fn */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getName:()Ljava/lang/String;
            invokestatic java.lang.String.valueOf:(Ljava/lang/Object;)Ljava/lang/String;
            invokespecial java.lang.StringBuilder.<init>:(Ljava/lang/String;)V
            ldc " internals="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 4 /* internals */
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            ldc " externals="
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/String;)Ljava/lang/StringBuilder;
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.externalSymbolDepths:Ljava/util/Map;
            aload 2 /* fn */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getId:()I
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            invokevirtual java.lang.StringBuilder.append:(Ljava/lang/Object;)Ljava/lang/StringBuilder;
            invokevirtual java.lang.StringBuilder.toString:()Ljava/lang/String;
            invokevirtual jdk.nashorn.internal.runtime.logging.DebugLogger.info:(Ljava/lang/String;)V
        37: .line 330
      StackMap locals: jdk.nashorn.internal.codegen.FindScopeDepths jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.FunctionNode java.util.Set java.util.Map jdk.nashorn.internal.ir.Block jdk.nashorn.internal.ir.Block
      StackMap stack:
            iconst_1
            ireturn
        end local 6 // jdk.nashorn.internal.ir.Block bodyBlock
        end local 5 // jdk.nashorn.internal.ir.Block globalBlock
        end local 4 // java.util.Map internals
        end local 3 // java.util.Set symbols
        end local 2 // jdk.nashorn.internal.ir.FunctionNode fn
        end local 1 // jdk.nashorn.internal.ir.Block block
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot           Name  Signature
            0   38     0           this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0   38     1          block  Ljdk/nashorn/internal/ir/Block;
            7   38     2             fn  Ljdk/nashorn/internal/ir/FunctionNode;
            8   38     3        symbols  Ljava/util/Set<Ljdk/nashorn/internal/ir/Symbol;>;
           10   38     4      internals  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Integer;>;
           11   38     5    globalBlock  Ljdk/nashorn/internal/ir/Block;
           12   38     6      bodyBlock  Ljdk/nashorn/internal/ir/Block;
           16   33     7         symbol  Ljdk/nashorn/internal/ir/Symbol;
           25   33     9           iter  Ljava/util/Iterator<Ljdk/nashorn/internal/ir/Block;>;
           17   33    10  internalDepth  I
           20   33    11       internal  Z
           24   33    12   depthAtStart  I
           27   32    13             b2  Ljdk/nashorn/internal/ir/Block;
    MethodParameters:
       Name  Flags
      block  final

  public jdk.nashorn.internal.ir.Node leaveBlock(jdk.nashorn.internal.ir.Block);
    descriptor: (Ljdk/nashorn/internal/ir/Block;)Ljdk/nashorn/internal/ir/Node;
    flags: (0x0001) ACC_PUBLIC
    Code:
      stack=2, locals=2, args_size=2
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.ir.Block block
         0: .line 335
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.compiler:Ljdk/nashorn/internal/codegen/Compiler;
            invokevirtual jdk.nashorn.internal.codegen.Compiler.isOnDemandCompilation:()Z
            ifeq 2
         1: .line 336
            aload 1 /* block */
            areturn
         2: .line 338
      StackMap locals:
      StackMap stack:
            aload 0 /* this */
            aload 1 /* block */
            invokevirtual jdk.nashorn.internal.codegen.FindScopeDepths.isDynamicScopeBoundary:(Ljdk/nashorn/internal/ir/Block;)Z
            ifeq 4
         3: .line 339
            aload 0 /* this */
            aload 1 /* block */
            invokevirtual jdk.nashorn.internal.codegen.FindScopeDepths.decreaseDynamicScopeCount:(Ljdk/nashorn/internal/ir/Node;)V
         4: .line 341
      StackMap locals:
      StackMap stack:
            aload 1 /* block */
            areturn
        end local 1 // jdk.nashorn.internal.ir.Block block
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot   Name  Signature
            0    5     0   this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0    5     1  block  Ljdk/nashorn/internal/ir/Block;
    MethodParameters:
       Name  Flags
      block  final

  private void addInternalSymbols(jdk.nashorn.internal.ir.FunctionNode, java.util.Set<java.lang.String>);
    descriptor: (Ljdk/nashorn/internal/ir/FunctionNode;Ljava/util/Set;)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=4, args_size=3
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.ir.FunctionNode functionNode
        start local 2 // java.util.Set symbols
         0: .line 345
            aload 1 /* functionNode */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getId:()I
            istore 3 /* fnId */
        start local 3 // int fnId
         1: .line 346
            getstatic jdk.nashorn.internal.codegen.FindScopeDepths.$assertionsDisabled:Z
            ifne 2
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.internalSymbols:Ljava/util/Map;
            iload 3 /* fnId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            ifnull 2
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.internalSymbols:Ljava/util/Map;
            iload 3 /* fnId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Set
            aload 2 /* symbols */
            invokeinterface java.util.Set.equals:(Ljava/lang/Object;)Z
            ifne 2
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
         2: .line 347
      StackMap locals: int
      StackMap stack:
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.internalSymbols:Ljava/util/Map;
            iload 3 /* fnId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 2 /* symbols */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         3: .line 348
            return
        end local 3 // int fnId
        end local 2 // java.util.Set symbols
        end local 1 // jdk.nashorn.internal.ir.FunctionNode functionNode
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    4     0          this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0    4     1  functionNode  Ljdk/nashorn/internal/ir/FunctionNode;
            0    4     2       symbols  Ljava/util/Set<Ljava/lang/String;>;
            1    4     3          fnId  I
    Signature: (Ljdk/nashorn/internal/ir/FunctionNode;Ljava/util/Set<Ljava/lang/String;>;)V
    MethodParameters:
              Name  Flags
      functionNode  final
      symbols       final

  private void addExternalSymbol(jdk.nashorn.internal.ir.FunctionNode, jdk.nashorn.internal.ir.Symbol, int);
    descriptor: (Ljdk/nashorn/internal/ir/FunctionNode;Ljdk/nashorn/internal/ir/Symbol;I)V
    flags: (0x0002) ACC_PRIVATE
    Code:
      stack=3, locals=6, args_size=4
        start local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
        start local 1 // jdk.nashorn.internal.ir.FunctionNode functionNode
        start local 2 // jdk.nashorn.internal.ir.Symbol symbol
        start local 3 // int depthAtStart
         0: .line 351
            aload 1 /* functionNode */
            invokevirtual jdk.nashorn.internal.ir.FunctionNode.getId:()I
            istore 4 /* fnId */
        start local 4 // int fnId
         1: .line 352
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.externalSymbolDepths:Ljava/util/Map;
            iload 4 /* fnId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.get:(Ljava/lang/Object;)Ljava/lang/Object;
            checkcast java.util.Map
            astore 5 /* depths */
        start local 5 // java.util.Map depths
         2: .line 353
            aload 5 /* depths */
            ifnonnull 5
         3: .line 354
            new java.util.HashMap
            dup
            invokespecial java.util.HashMap.<init>:()V
            astore 5 /* depths */
         4: .line 355
            aload 0 /* this */
            getfield jdk.nashorn.internal.codegen.FindScopeDepths.externalSymbolDepths:Ljava/util/Map;
            iload 4 /* fnId */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            aload 5 /* depths */
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         5: .line 357
      StackMap locals: int java.util.Map
      StackMap stack:
            aload 5 /* depths */
            aload 2 /* symbol */
            invokevirtual jdk.nashorn.internal.ir.Symbol.getName:()Ljava/lang/String;
            iload 3 /* depthAtStart */
            invokestatic java.lang.Integer.valueOf:(I)Ljava/lang/Integer;
            invokeinterface java.util.Map.put:(Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object;
            pop
         6: .line 358
            return
        end local 5 // java.util.Map depths
        end local 4 // int fnId
        end local 3 // int depthAtStart
        end local 2 // jdk.nashorn.internal.ir.Symbol symbol
        end local 1 // jdk.nashorn.internal.ir.FunctionNode functionNode
        end local 0 // jdk.nashorn.internal.codegen.FindScopeDepths this
      LocalVariableTable:
        Start  End  Slot          Name  Signature
            0    7     0          this  Ljdk/nashorn/internal/codegen/FindScopeDepths;
            0    7     1  functionNode  Ljdk/nashorn/internal/ir/FunctionNode;
            0    7     2        symbol  Ljdk/nashorn/internal/ir/Symbol;
            0    7     3  depthAtStart  I
            1    7     4          fnId  I
            2    7     5        depths  Ljava/util/Map<Ljava/lang/String;Ljava/lang/Integer;>;
    MethodParameters:
              Name  Flags
      functionNode  final
      symbol        final
      depthAtStart  final
}
SourceFile: "FindScopeDepths.java"
NestMembers:
  jdk.nashorn.internal.codegen.FindScopeDepths$1
InnerClasses:
  jdk.nashorn.internal.codegen.FindScopeDepths$1
    RuntimeVisibleAnnotations: 
      jdk.nashorn.internal.runtime.logging.Logger(name = "scopedepths")