aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.HLE/HOS/Diagnostics/Demangler/Ast/ThrowExpression.cs
blob: 2972a31c2637fde43f18851a8915c4c6476d397c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System.IO;

namespace Ryujinx.HLE.HOS.Diagnostics.Demangler.Ast
{
    public class ThrowExpression : BaseNode
    {
        private BaseNode _expression;

        public ThrowExpression(BaseNode expression) : base(NodeType.ThrowExpression)
        {
            _expression = expression;
        }

        public override void PrintLeft(TextWriter writer)
        {
            writer.Write("throw ");
            _expression.Print(writer);
        }
    }
}