mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-12-02 21:22:02 +00:00
25 lines
No EOL
678 B
C#
25 lines
No EOL
678 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class EnclosedExpression : BaseNode
|
|
{
|
|
private string _prefix;
|
|
private BaseNode _expression;
|
|
private string _postfix;
|
|
|
|
public EnclosedExpression(string prefix, BaseNode expression, string postfix) : base(NodeType.EnclosedExpression)
|
|
{
|
|
_prefix = prefix;
|
|
_expression = expression;
|
|
_postfix = postfix;
|
|
}
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
writer.Write(_prefix);
|
|
_expression.Print(writer);
|
|
writer.Write(_postfix);
|
|
}
|
|
}
|
|
} |