mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-08-06 18:28:29 +02:00
This reverts commit 85dbb9559a
.
This commit is contained in:
@@ -4,17 +4,17 @@ namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
|
||||
{
|
||||
public class ThrowExpression : BaseNode
|
||||
{
|
||||
private BaseNode _expression;
|
||||
private BaseNode Expression;
|
||||
|
||||
public ThrowExpression(BaseNode expression) : base(NodeType.ThrowExpression)
|
||||
public ThrowExpression(BaseNode Expression) : base(NodeType.ThrowExpression)
|
||||
{
|
||||
_expression = expression;
|
||||
this.Expression = Expression;
|
||||
}
|
||||
|
||||
public override void PrintLeft(TextWriter writer)
|
||||
public override void PrintLeft(TextWriter Writer)
|
||||
{
|
||||
writer.Write("throw ");
|
||||
_expression.Print(writer);
|
||||
Writer.Write("throw ");
|
||||
Expression.Print(Writer);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user