test31.spec.js 885 B

12345678910111213141516171819202122232425262728293031323334353637
  1. import Lexers from './../grammar/';
  2. import {Types} from './../js/ast/types';
  3. import { IVProgParser } from './../js/ast/ivprogParser';
  4. import { IVProgProcessor} from './../js/processor/ivprogProcessor'
  5. describe('A case without return/break', function () {
  6. let input = `programa {
  7. funcao inicio() {
  8. inteiro a = 1
  9. escolha (a) {
  10. caso 0:
  11. a = a + 1
  12. pare
  13. caso 1:
  14. a = a + 2
  15. caso 2:
  16. a = a * 2
  17. pare
  18. caso contrario:
  19. a = 5 + 8
  20. }
  21. }
  22. }`;
  23. const lexer = Lexers['pt_br'];
  24. it(`should fall through`, function (done) {
  25. const parser = new IVProgParser(input, lexer);
  26. const exec = new IVProgProcessor(parser.parseTree());
  27. exec.interpretAST().then(sto => {
  28. expect(sto.applyStore('a').value).toEqual(6);
  29. done();
  30. }).catch( err => done(err));
  31. });
  32. });