lcc/Compiler/Parser/Exceptions/MissingSemicolonException.cs
Clemens-Dautermann b3fe78fffb Added Parser
- can parse a basic token list to an AST
2020-08-17 01:07:59 +02:00

9 lines
No EOL
170 B
C#

using System;
namespace Compiler.Parser.Exceptions
{
public class MissingSemicolonException : Exception
{
public override string Message { get; }
}
}