final class com.oracle.truffle.api.TruffleContextSnippets$MyNode extends com.oracle.truffle.api.nodes.Node
  minor version: 0
  major version: 59
  flags: flags: (0x0030) ACC_FINAL, ACC_SUPER
  this_class: com.oracle.truffle.api.TruffleContextSnippets$MyNode
  super_class: com.oracle.truffle.api.nodes.Node
{
  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 448
            ldc Lcom/oracle/truffle/api/TruffleContextSnippets;
            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 com.oracle.truffle.api.TruffleContextSnippets$MyNode.$assertionsDisabled:Z
            return
      LocalVariableTable:
        Start  End  Slot  Name  Signature

  void <init>();
    descriptor: ()V
    flags: (0x0000) 
    Code:
      stack=1, locals=1, args_size=1
        start local 0 // com.oracle.truffle.api.TruffleContextSnippets$MyNode this
         0: .line 448
            aload 0 /* this */
            invokespecial com.oracle.truffle.api.nodes.Node.<init>:()V
            return
        end local 0 // com.oracle.truffle.api.TruffleContextSnippets$MyNode this
      LocalVariableTable:
        Start  End  Slot  Name  Signature
            0    1     0  this  Lcom/oracle/truffle/api/TruffleContextSnippets$MyNode;

  void executeInContext(com.oracle.truffle.api.TruffleLanguage$Env);
    descriptor: (Lcom/oracle/truffle/api/TruffleLanguage$Env;)V
    flags: (0x0000) 
    Code:
      stack=3, locals=7, args_size=2
        start local 0 // com.oracle.truffle.api.TruffleContextSnippets$MyNode this
        start local 1 // com.oracle.truffle.api.TruffleLanguage$Env env
         0: .line 450
            invokestatic com.oracle.truffle.api.TruffleContextSnippets.getContext:()Lcom/oracle/truffle/api/TruffleContextSnippets$MyContext;
            astore 2 /* outerLangContext */
        start local 2 // com.oracle.truffle.api.TruffleContextSnippets$MyContext outerLangContext
         1: .line 452
            aload 1 /* env */
            invokevirtual com.oracle.truffle.api.TruffleLanguage$Env.newContextBuilder:()Lcom/oracle/truffle/api/TruffleContext$Builder;
            invokevirtual com.oracle.truffle.api.TruffleContext$Builder.build:()Lcom/oracle/truffle/api/TruffleContext;
            astore 3 /* innerContext */
        start local 3 // com.oracle.truffle.api.TruffleContext innerContext
         2: .line 453
            aload 3 /* innerContext */
            aload 0 /* this */
            invokevirtual com.oracle.truffle.api.TruffleContext.enter:(Lcom/oracle/truffle/api/nodes/Node;)Ljava/lang/Object;
            astore 4 /* p */
        start local 4 // java.lang.Object p
         3: .line 455
            invokestatic com.oracle.truffle.api.TruffleContextSnippets.getContext:()Lcom/oracle/truffle/api/TruffleContextSnippets$MyContext;
            astore 5 /* innerLangContext */
        start local 5 // com.oracle.truffle.api.TruffleContextSnippets$MyContext innerLangContext
         4: .line 457
            getstatic com.oracle.truffle.api.TruffleContextSnippets$MyNode.$assertionsDisabled:Z
            ifne 8
            aload 2 /* outerLangContext */
            aload 5 /* innerLangContext */
            if_acmpne 8
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        end local 5 // com.oracle.truffle.api.TruffleContextSnippets$MyContext innerLangContext
         5: .line 458
      StackMap locals: com.oracle.truffle.api.TruffleContextSnippets$MyNode com.oracle.truffle.api.TruffleLanguage$Env com.oracle.truffle.api.TruffleContextSnippets$MyContext com.oracle.truffle.api.TruffleContext java.lang.Object
      StackMap stack: java.lang.Throwable
            astore 6
         6: .line 459
            aload 3 /* innerContext */
            aload 0 /* this */
            aload 4 /* p */
            invokevirtual com.oracle.truffle.api.TruffleContext.leave:(Lcom/oracle/truffle/api/nodes/Node;Ljava/lang/Object;)V
         7: .line 460
            aload 6
            athrow
         8: .line 459
      StackMap locals:
      StackMap stack:
            aload 3 /* innerContext */
            aload 0 /* this */
            aload 4 /* p */
            invokevirtual com.oracle.truffle.api.TruffleContext.leave:(Lcom/oracle/truffle/api/nodes/Node;Ljava/lang/Object;)V
         9: .line 461
            getstatic com.oracle.truffle.api.TruffleContextSnippets$MyNode.$assertionsDisabled:Z
            ifne 10
            aload 2 /* outerLangContext */
            invokestatic com.oracle.truffle.api.TruffleContextSnippets.getContext:()Lcom/oracle/truffle/api/TruffleContextSnippets$MyContext;
            if_acmpeq 10
            new java.lang.AssertionError
            dup
            invokespecial java.lang.AssertionError.<init>:()V
            athrow
        10: .line 462
      StackMap locals:
      StackMap stack:
            aload 3 /* innerContext */
            invokevirtual com.oracle.truffle.api.TruffleContext.close:()V
        11: .line 463
            return
        end local 4 // java.lang.Object p
        end local 3 // com.oracle.truffle.api.TruffleContext innerContext
        end local 2 // com.oracle.truffle.api.TruffleContextSnippets$MyContext outerLangContext
        end local 1 // com.oracle.truffle.api.TruffleLanguage$Env env
        end local 0 // com.oracle.truffle.api.TruffleContextSnippets$MyNode this
      LocalVariableTable:
        Start  End  Slot              Name  Signature
            0   12     0              this  Lcom/oracle/truffle/api/TruffleContextSnippets$MyNode;
            0   12     1               env  Lcom/oracle/truffle/api/TruffleLanguage$Env;
            1   12     2  outerLangContext  Lcom/oracle/truffle/api/TruffleContextSnippets$MyContext;
            2   12     3      innerContext  Lcom/oracle/truffle/api/TruffleContext;
            3   12     4                 p  Ljava/lang/Object;
            4    5     5  innerLangContext  Lcom/oracle/truffle/api/TruffleContextSnippets$MyContext;
      Exception table:
        from    to  target  type
           3     5       5  any
    MethodParameters:
      Name  Flags
      env   
}
SourceFile: "TruffleContext.java"
NestHost: com.oracle.truffle.api.TruffleContextSnippets
InnerClasses:
  public final Builder = com.oracle.truffle.api.TruffleContext$Builder of com.oracle.truffle.api.TruffleContext
  abstract MyContext = com.oracle.truffle.api.TruffleContextSnippets$MyContext of com.oracle.truffle.api.TruffleContextSnippets
  final MyNode = com.oracle.truffle.api.TruffleContextSnippets$MyNode of com.oracle.truffle.api.TruffleContextSnippets
  public final Env = com.oracle.truffle.api.TruffleLanguage$Env of com.oracle.truffle.api.TruffleLanguage