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