SyntaxNodes.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. namespace Jint.Parser.Ast
  2. {
  3. public enum SyntaxNodes
  4. {
  5. AssignmentExpression,
  6. ArrayExpression,
  7. BlockStatement,
  8. BinaryExpression,
  9. BreakStatement,
  10. CallExpression,
  11. CatchClause,
  12. ConditionalExpression,
  13. ContinueStatement,
  14. DoWhileStatement,
  15. DebuggerStatement,
  16. EmptyStatement,
  17. ExpressionStatement,
  18. ForStatement,
  19. ForInStatement,
  20. FunctionDeclaration,
  21. FunctionExpression,
  22. Identifier,
  23. IfStatement,
  24. Literal,
  25. LabeledStatement,
  26. LogicalExpression,
  27. MemberExpression,
  28. NewExpression,
  29. ObjectExpression,
  30. Program,
  31. Property,
  32. ReturnStatement,
  33. SequenceExpression,
  34. SwitchStatement,
  35. SwitchCase,
  36. ThisExpression,
  37. ThrowStatement,
  38. TryStatement,
  39. UnaryExpression,
  40. UpdateExpression,
  41. VariableDeclaration,
  42. VariableDeclarator,
  43. WhileStatement,
  44. WithStatement
  45. };
  46. }