mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-21 18:13:14 +02:00
16 lines
No EOL
411 B
C#
16 lines
No EOL
411 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class LiteralOperator : ParentNode
|
|
{
|
|
public LiteralOperator(BaseNode Child) : base(NodeType.LiteralOperator, Child) { }
|
|
|
|
public override void PrintLeft(TextWriter Writer)
|
|
{
|
|
Writer.Write("operator \"");
|
|
Child.PrintLeft(Writer);
|
|
Writer.Write("\"");
|
|
}
|
|
}
|
|
} |