mirror of
https://github.com/actions/runner.git
synced 2025-12-11 12:57:05 +00:00
14 lines
318 B
C#
14 lines
318 B
C#
namespace GitHub.Actions.Expressions
|
|
{
|
|
internal enum ParseExceptionKind
|
|
{
|
|
ExceededMaxDepth,
|
|
ExceededMaxLength,
|
|
TooFewParameters,
|
|
TooManyParameters,
|
|
UnexpectedEndOfExpression,
|
|
UnexpectedSymbol,
|
|
UnrecognizedFunction,
|
|
UnrecognizedNamedValue,
|
|
}
|
|
} |