mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2026-07-17 00:14:18 +00:00
Move solution and projects to src
This commit is contained in:
20
src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialName.cs
Normal file
20
src/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/SpecialName.cs
Normal file
@@ -0,0 +1,20 @@
|
||||
using System.IO;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
||||
{
|
||||
public class SpecialName : ParentNode
|
||||
{
|
||||
private string _specialValue;
|
||||
|
||||
public SpecialName(string specialValue, BaseNode type) : base(NodeType.SpecialName, type)
|
||||
{
|
||||
_specialValue = specialValue;
|
||||
}
|
||||
|
||||
public override void PrintLeft(TextWriter writer)
|
||||
{
|
||||
writer.Write(_specialValue);
|
||||
Child.Print(writer);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user