mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 19:04:51 +08:00
21 lines
387 B
C#
21 lines
387 B
C#
namespace Orchard.Widgets.SimpleScripting {
|
|
public enum TokenKind {
|
|
Eof,
|
|
OpenParen,
|
|
CloseParen,
|
|
StringLiteral,
|
|
SingleQuotedStringLiteral,
|
|
Integer,
|
|
Plus,
|
|
Minus,
|
|
Mul,
|
|
Div,
|
|
True,
|
|
False,
|
|
Identifier,
|
|
And,
|
|
Or,
|
|
Not,
|
|
Invalid
|
|
}
|
|
} |