index.js 820 B

1234567891011121314151617181920212223242526272829303132
  1. import { Break } from './break';
  2. import { Return } from './return';
  3. import { Assign } from './assign';
  4. import { Declaration } from './declaration';
  5. import { ArrayDeclaration } from './arrayDeclaration';
  6. import { While } from './while';
  7. import { For } from './for';
  8. import { Function } from './function';
  9. import { IfThenElse } from './ifThenElse';
  10. import { CommandBlock } from './commandBlock';
  11. import { DoWhile } from './doWhile';
  12. import { Switch } from './switch';
  13. import { Case } from './case';
  14. // A Proxy to the expression which do what is required. No need to write a new one
  15. import { FunctionCall } from './../expressions/functionCall';
  16. export {
  17. Break,
  18. Return,
  19. Assign,
  20. Declaration,
  21. ArrayDeclaration,
  22. While,
  23. For,
  24. Function,
  25. IfThenElse,
  26. CommandBlock,
  27. DoWhile,
  28. Switch,
  29. Case,
  30. FunctionCall
  31. };