25 lines
No EOL
693 B
C#
25 lines
No EOL
693 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)
|
|
{
|
|
this._prefix = prefix;
|
|
this._expression = expression;
|
|
this._postfix = postfix;
|
|
}
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
writer.Write(_prefix);
|
|
_expression.Print(writer);
|
|
writer.Write(_postfix);
|
|
}
|
|
}
|
|
} |