jackfiled
89ce313b77
Reviewed-on: https://git.bupt-hpc.cn/jackfiled/CanonSharp/pulls/4 Co-authored-by: jackfiled <xcrenchangjun@outlook.com> Co-committed-by: jackfiled <xcrenchangjun@outlook.com>
18 lines
523 B
C#
18 lines
523 B
C#
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!";
|
|
}
|