123456789101112131415161718192021222324 |
- import Lexers from './../grammar/';
- import {
- IVProgParser
- } from './../js/ast/ivprogParser';
- describe('Variable initialization with a function call', () => {
- let input = `programa {
- funcao inicio() {
- inteiro a = func(5)
- }
- funcao inteiro fun(inteiro a) {
- retorne a * 2
- }
- }`;
- const lexer = Lexers['pt_br'];
- it(`should not throw an Error`, () => {
- const as = new IVProgParser(input, lexer);
- const fun = as.parseTree.bind(as);
- expect(fun).not.toThrow();
- });
- });
|