Initial implementation of simple scripting parser

--HG--
branch : dev
This commit is contained in:
Renaud Paquay
2010-11-27 16:00:45 -08:00
parent 112e23243d
commit ca1d1987bf
11 changed files with 870 additions and 0 deletions

View File

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