CommentNode.cs
 1  namespace Ryujinx.Graphics.Shader.IntermediateRepresentation
 2  {
 3      class CommentNode : Operation
 4      {
 5          public string Comment { get; }
 6  
 7          public CommentNode(string comment) : base(Instruction.Comment, null)
 8          {
 9              Comment = comment;
10          }
11      }
12  }