16 lines
No EOL
416 B
C#
16 lines
No EOL
416 B
C#
using System.IO;
|
|
|
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
|
{
|
|
public class DynamicExceptionSpec : ParentNode
|
|
{
|
|
public DynamicExceptionSpec(BaseNode child) : base(NodeType.DynamicExceptionSpec, child) { }
|
|
|
|
public override void PrintLeft(TextWriter writer)
|
|
{
|
|
writer.Write("throw(");
|
|
Child.Print(writer);
|
|
writer.Write(")");
|
|
}
|
|
}
|
|
} |