mirror of
https://git.naxdy.org/Mirror/Ryujinx.git
synced 2024-11-16 01:55:27 +00:00
24 lines
515 B
C#
24 lines
515 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);
|
|
}
|
|
}
|
|
}
|
|
} |