mirror of
https://github.com/actions/runner.git
synced 2025-12-17 15:59:37 +00:00
16 lines
355 B
C#
16 lines
355 B
C#
namespace GitHub.DistributedTask.Expressions2
|
|
{
|
|
internal enum ParseExceptionKind
|
|
{
|
|
ExceededMaxDepth,
|
|
ExceededMaxLength,
|
|
TooFewParameters,
|
|
TooManyParameters,
|
|
EvenParameters,
|
|
UnexpectedEndOfExpression,
|
|
UnexpectedSymbol,
|
|
UnrecognizedFunction,
|
|
UnrecognizedNamedValue,
|
|
}
|
|
}
|