Final Changes
All checks were successful
continuous-integration/appveyor/branch AppVeyor build succeeded

This commit is contained in:
Brychan Dempsey 2021-03-29 16:31:41 +13:00
parent 340591e1a1
commit eccecc15a9

View File

@ -846,10 +846,7 @@ namespace Assignment_1
public class ParserException : Exception
{
/// <summary>
/// Importance is used to signify how the parser should respond to the error.
/// A code of 3 or greater is a critical error; the application will throw the error further up the call and exit.
/// 0 implies the line may be retried.
/// 1 should imply the current block is not valid and should be retried.
/// Custom expression that will also pass the LinePosition & importance of the error (not implemented)
/// </summary>
public int Importance = 0;
public long LinePosition = -1;