mirror of
https://github.com/actions/runner.git
synced 2026-01-24 05:21:25 +08:00
15 lines
342 B
C#
15 lines
342 B
C#
namespace GitHub.Actions.Expressions
|
|
{
|
|
internal enum ParseExceptionKind
|
|
{
|
|
ExceededMaxDepth,
|
|
ExceededMaxLength,
|
|
TooFewParameters,
|
|
TooManyParameters,
|
|
EvenParameters,
|
|
UnexpectedEndOfExpression,
|
|
UnexpectedSymbol,
|
|
UnrecognizedFunction,
|
|
UnrecognizedNamedValue,
|
|
}
|
|
} |