test30.spec.js 908 B

1234567891011121314151617181920212223242526272829303132333435363738
  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 break command inside a switch..case', function () {
  6. let input = `programa {
  7. funcao inicio() {
  8. inteiro a = 0
  9. escolha (a) {
  10. caso 2:
  11. a = a + 1
  12. pare
  13. caso 1:
  14. a = a + 2
  15. pare
  16. caso 0:
  17. a = -5
  18. pare
  19. caso contrario:
  20. a = 5 + 8
  21. }
  22. }
  23. }`;
  24. const lexer = Lexers['pt_br'];
  25. it(`should terminate it`, function (done) {
  26. const parser = new IVProgParser(input, lexer);
  27. const exec = new IVProgProcessor(parser.parseTree());
  28. exec.interpretAST().then(sto => {
  29. expect(sto.applyStore('a').value).toEqual(-5);
  30. done();
  31. }).catch( err => done(err));
  32. });
  33. });