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

20 lines
470 B
C#
Raw Normal View History

using System.IO;
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
public class ThrowExpression : BaseNode
{
2018-12-01 21:01:59 +01:00
private BaseNode _expression;
2018-12-01 21:01:59 +01:00
public ThrowExpression(BaseNode expression) : base(NodeType.ThrowExpression)
{
2018-12-01 21:01:59 +01:00
this._expression = expression;
}
2018-12-01 21:01:59 +01:00
public override void PrintLeft(TextWriter writer)
{
2018-12-01 21:01:59 +01:00
writer.Write("throw ");
_expression.Print(writer);
}
}
}