mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-11 04:36:40 +00:00
24 lines
511 B
C#
24 lines
511 B
C#
|
using System.IO;
|
||
|
|
||
|
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
||
|
{
|
||
|
public class FunctionParameter : BaseNode
|
||
|
{
|
||
|
private string Number;
|
||
|
|
||
|
public FunctionParameter(string Number) : base(NodeType.FunctionParameter)
|
||
|
{
|
||
|
this.Number = Number;
|
||
|
}
|
||
|
|
||
|
public override void PrintLeft(TextWriter Writer)
|
||
|
{
|
||
|
Writer.Write("fp ");
|
||
|
|
||
|
if (Number != null)
|
||
|
{
|
||
|
Writer.Write(Number);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|