1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2024-12-02 23:22:08 +00:00
Ryujinx/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ThrowExpression.cs

20 lines
465 B
C#
Raw Normal View History

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