mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-16 01:55:27 +00:00
29 lines
871 B
C#
29 lines
871 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class ConditionalExpression : BaseNode
|
|
{
|
|
private BaseNode _thenNode;
|
|
private BaseNode _elseNode;
|
|
private BaseNode _conditionNode;
|
|
|
|
public ConditionalExpression(BaseNode conditionNode, BaseNode thenNode, BaseNode elseNode) : base(NodeType.ConditionalExpression)
|
|
{
|
|
this._thenNode = thenNode;
|
|
this._conditionNode = conditionNode;
|
|
this._elseNode = elseNode;
|
|
}
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
writer.Write("(");
|
|
_conditionNode.Print(writer);
|
|
writer.Write(") ? (");
|
|
_thenNode.Print(writer);
|
|
writer.Write(") : (");
|
|
_elseNode.Print(writer);
|
|
writer.Write(")");
|
|
}
|
|
}
|
|
} |