Files
runner/src/Sdk/Expressions/Tokens/TokenKind.cs
2025-11-07 20:18:52 +00:00

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,
}
}