CanonSharp/CanonSharp.Benchmark/Canon.Core/Exceptions/ReduceConflictException.cs

18 lines
523 B
C#
Raw Normal View History

using CanonSharp.Benchmark.Canon.Core.GrammarParser;
namespace CanonSharp.Benchmark.Canon.Core.Exceptions;
public class ReduceConflictException(LrState originState, Terminator lookAhead, NonTerminator left1, NonTerminator left2)
: Exception
{
public LrState OriginState { get; } = originState;
public Terminator LookAhead { get; } = lookAhead;
public NonTerminator Left1 { get; } = left1;
public NonTerminator Left2 { get; } = left2;
public override string Message => "Reduce Conflict!";
}