mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-11-28 00:12:22 -05:00
Move solution and projects to src
This commit is contained in:
@@ -0,0 +1,89 @@
|
||||
using System.IO;
|
||||
|
||||
namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
||||
{
|
||||
public class SpecialSubstitution : BaseNode
|
||||
{
|
||||
public enum SpecialType
|
||||
{
|
||||
Allocator,
|
||||
BasicString,
|
||||
String,
|
||||
IStream,
|
||||
OStream,
|
||||
IOStream
|
||||
}
|
||||
|
||||
private SpecialType _specialSubstitutionKey;
|
||||
|
||||
public SpecialSubstitution(SpecialType specialSubstitutionKey) : base(NodeType.SpecialSubstitution)
|
||||
{
|
||||
_specialSubstitutionKey = specialSubstitutionKey;
|
||||
}
|
||||
|
||||
public void SetExtended()
|
||||
{
|
||||
Type = NodeType.ExpandedSpecialSubstitution;
|
||||
}
|
||||
|
||||
public override string GetName()
|
||||
{
|
||||
switch (_specialSubstitutionKey)
|
||||
{
|
||||
case SpecialType.Allocator:
|
||||
return "allocator";
|
||||
case SpecialType.BasicString:
|
||||
return "basic_string";
|
||||
case SpecialType.String:
|
||||
if (Type == NodeType.ExpandedSpecialSubstitution)
|
||||
{
|
||||
return "basic_string";
|
||||
}
|
||||
|
||||
return "string";
|
||||
case SpecialType.IStream:
|
||||
return "istream";
|
||||
case SpecialType.OStream:
|
||||
return "ostream";
|
||||
case SpecialType.IOStream:
|
||||
return "iostream";
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
private string GetExtendedName()
|
||||
{
|
||||
switch (_specialSubstitutionKey)
|
||||
{
|
||||
case SpecialType.Allocator:
|
||||
return "std::allocator";
|
||||
case SpecialType.BasicString:
|
||||
return "std::basic_string";
|
||||
case SpecialType.String:
|
||||
return "std::basic_string<char, std::char_traits<char>, std::allocator<char> >";
|
||||
case SpecialType.IStream:
|
||||
return "std::basic_istream<char, std::char_traits<char> >";
|
||||
case SpecialType.OStream:
|
||||
return "std::basic_ostream<char, std::char_traits<char> >";
|
||||
case SpecialType.IOStream:
|
||||
return "std::basic_iostream<char, std::char_traits<char> >";
|
||||
}
|
||||
|
||||
return null;
|
||||
}
|
||||
|
||||
public override void PrintLeft(TextWriter writer)
|
||||
{
|
||||
if (Type == NodeType.ExpandedSpecialSubstitution)
|
||||
{
|
||||
writer.Write(GetExtendedName());
|
||||
}
|
||||
else
|
||||
{
|
||||
writer.Write("std::");
|
||||
writer.Write(GetName());
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user