test13.spec.js 632 B

12345678910111213141516171819202122232425262728
  1. import Lexers from './../grammar/';
  2. import {
  3. IVProgParser
  4. } from './../js/ast/ivprogParser';
  5. describe('A complete program code', () => {
  6. let input = `programa {
  7. const real PI = 5.7e-10
  8. inteiro V = -10*2
  9. funcao inteiro test(real i) {
  10. escolha (i) {
  11. caso 1:
  12. retorne 0
  13. caso contrario:
  14. retorne 4
  15. }
  16. }
  17. }`;
  18. const lexer = Lexers['pt_br'];
  19. it(`should not result in SyntaxError`, () => {
  20. const as = new IVProgParser(input, lexer);
  21. const fun = as.parseTree.bind(as);
  22. expect(fun).not.toThrow();
  23. });
  24. });