1
0
Fork 0
mirror of https://github.com/Ryujinx/Ryujinx.git synced 2025-02-25 03:55:35 +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 14:01:59 -06:00
private BaseNode _expression;
2018-12-01 14:01:59 -06:00
public ThrowExpression(BaseNode expression) : base(NodeType.ThrowExpression)
{
2018-12-01 14:24:37 -06:00
_expression = expression;
}
2018-12-01 14:01:59 -06:00
public override void PrintLeft(TextWriter writer)
{
2018-12-01 14:01:59 -06:00
writer.Write("throw ");
_expression.Print(writer);
}
}
}