test23.spec.js 550 B

123456789101112131415161718192021222324
  1. import Lexers from './../grammar/';
  2. import {
  3. IVProgParser
  4. } from './../js/ast/ivprogParser';
  5. describe('Variable initialization with a function call', () => {
  6. let input = `programa {
  7. funcao inicio() {
  8. inteiro a = func(5)
  9. }
  10. funcao inteiro fun(inteiro a) {
  11. retorne a * 2
  12. }
  13. }`;
  14. const lexer = Lexers['pt_br'];
  15. it(`should not throw an Error`, () => {
  16. const as = new IVProgParser(input, lexer);
  17. const fun = as.parseTree.bind(as);
  18. expect(fun).not.toThrow();
  19. });
  20. });