20 lines
No EOL
470 B
C#
20 lines
No EOL
470 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class ThrowExpression : BaseNode
|
|
{
|
|
private BaseNode _expression;
|
|
|
|
public ThrowExpression(BaseNode expression) : base(NodeType.ThrowExpression)
|
|
{
|
|
this._expression = expression;
|
|
}
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
writer.Write("throw ");
|
|
_expression.Print(writer);
|
|
}
|
|
}
|
|
} |