2018-09-15 15:29:18 +02:00
|
|
|
using System.IO;
|
|
|
|
|
|
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
|
|
|
{
|
|
|
|
|
public class CastExpression : BaseNode
|
|
|
|
|
{
|
2023-07-16 19:31:14 +02:00
|
|
|
private readonly string _kind;
|
|
|
|
|
private readonly BaseNode _to;
|
|
|
|
|
private readonly BaseNode _from;
|
2018-09-15 15:29:18 +02:00
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
public CastExpression(string kind, BaseNode to, BaseNode from) : base(NodeType.CastExpression)
|
2018-09-15 15:29:18 +02:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
_kind = kind;
|
2023-07-16 19:31:14 +02:00
|
|
|
_to = to;
|
2018-12-06 05:16:24 -06:00
|
|
|
_from = from;
|
2018-09-15 15:29:18 +02:00
|
|
|
}
|
|
|
|
|
|
2018-12-06 05:16:24 -06:00
|
|
|
public override void PrintLeft(TextWriter writer)
|
2018-09-15 15:29:18 +02:00
|
|
|
{
|
2018-12-06 05:16:24 -06:00
|
|
|
writer.Write(_kind);
|
|
|
|
|
writer.Write("<");
|
|
|
|
|
_to.PrintLeft(writer);
|
|
|
|
|
writer.Write(">(");
|
|
|
|
|
_from.PrintLeft(writer);
|
|
|
|
|
writer.Write(")");
|
2018-09-15 15:29:18 +02:00
|
|
|
}
|
|
|
|
|
}
|
2023-07-16 19:31:14 +02:00
|
|
|
}
|