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