9 lines
178 B
C#
9 lines
178 B
C#
|
|
using System.Collections.Generic;
|
||
|
|
|
||
|
|
namespace Rokojori;
|
||
|
|
|
||
|
|
public abstract class ParserPhase
|
||
|
|
{
|
||
|
|
public abstract void Process( Parser parser );
|
||
|
|
public bool hasStopError = false;
|
||
|
|
}
|