3615a70cae
This reverts commit 85dbb9559a
.
16 lines
411 B
C#
16 lines
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("\"");
|
|
}
|
|
}
|
|
} |