mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-20 10:45:29 +08:00
Initial implementation of simple scripting parser
--HG-- branch : dev
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
namespace Orchard.Widgets.SimpleScripting {
|
||||
public enum TokenKind {
|
||||
Eof,
|
||||
OpenParen,
|
||||
CloseParen,
|
||||
StringLiteral,
|
||||
SingleQuotedStringLiteral,
|
||||
NumberLiteral,
|
||||
Plus,
|
||||
Minus,
|
||||
Mul,
|
||||
Div,
|
||||
True,
|
||||
False,
|
||||
Identifier,
|
||||
And,
|
||||
Or,
|
||||
Not,
|
||||
Invalid
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user