Ryujinx/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ConditionalExpression.cs

29 lines
871 B
C#
Raw Normal View History

using System.IO;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public class ConditionalExpression : BaseNode
{
2018-12-01 20:01:59 +00:00
private BaseNode _thenNode;
private BaseNode _elseNode;
private BaseNode _conditionNode;
2018-12-01 20:01:59 +00:00
public ConditionalExpression(BaseNode conditionNode, BaseNode thenNode, BaseNode elseNode) : base(NodeType.ConditionalExpression)
{
2018-12-01 20:01:59 +00:00
this._thenNode = thenNode;
this._conditionNode = conditionNode;
this._elseNode = elseNode;
}
2018-12-01 20:01:59 +00:00
public override void PrintLeft(TextWriter writer)
{
2018-12-01 20:01:59 +00:00
writer.Write("(");
_conditionNode.Print(writer);
writer.Write(") ? (");
_thenNode.Print(writer);
writer.Write(") : (");
_elseNode.Print(writer);
writer.Write(")");
}
}
}