12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- namespace Jint.Parser.Ast
- {
- public enum SyntaxNodes
- {
- AssignmentExpression,
- ArrayExpression,
- BlockStatement,
- BinaryExpression,
- BreakStatement,
- CallExpression,
- CatchClause,
- ConditionalExpression,
- ContinueStatement,
- DoWhileStatement,
- DebuggerStatement,
- EmptyStatement,
- ExpressionStatement,
- ForStatement,
- ForInStatement,
- FunctionDeclaration,
- FunctionExpression,
- Identifier,
- IfStatement,
- Literal,
- LabeledStatement,
- LogicalExpression,
- MemberExpression,
- NewExpression,
- ObjectExpression,
- Program,
- Property,
- ReturnStatement,
- SequenceExpression,
- SwitchStatement,
- SwitchCase,
- ThisExpression,
- ThrowStatement,
- TryStatement,
- UnaryExpression,
- UpdateExpression,
- VariableDeclaration,
- VariableDeclarator,
- WhileStatement,
- WithStatement
- };
- }
|