using System.Collections.Generic; using Rokojori.Extensions; namespace Rokojori; public abstract class ParserPhase { public abstract void Process( Parser parser ); public bool hasStopError = false; }