mirror of
https://github.com/actions/runner.git
synced 2025-12-13 10:05:23 +00:00
31 lines
712 B
C#
31 lines
712 B
C#
using System;
|
|
|
|
namespace GitHub.Actions.Expressions.Tokens
|
|
{
|
|
internal enum TokenKind
|
|
{
|
|
// Punctuation
|
|
StartGroup, // "(" logical grouping
|
|
StartIndex, // "["
|
|
StartParameters, // "(" function call
|
|
EndGroup, // ")" logical grouping
|
|
EndIndex, // "]"
|
|
EndParameters, // ")" function call
|
|
Separator, // ","
|
|
Dereference, // "."
|
|
Wildcard, // "*"
|
|
LogicalOperator, // "!", "==", etc
|
|
|
|
// Values
|
|
Null,
|
|
Boolean,
|
|
Number,
|
|
String,
|
|
PropertyName,
|
|
Function,
|
|
NamedValue,
|
|
|
|
Unexpected,
|
|
}
|
|
}
|