IAstNode.cs
 1  using System.Collections.Generic;
 2  
 3  namespace Ryujinx.Graphics.Shader.StructuredIr
 4  {
 5      interface IAstNode
 6      {
 7          AstBlock Parent { get; set; }
 8  
 9          LinkedListNode<IAstNode> LLNode { get; set; }
10      }
11  }