12345678910111213141516171819202122232425262728293031 |
- import Lexers from './../grammar/';
- import {
- IVProgParser
- } from './../js/ast/ivprogParser';
- import {
- SyntaxError}from './../js/ast/SyntaxError';
- describe('Legal newline syntax', () => {
- const input = `programa
- {
- const inteiro val = 5
- funcao p (
- inteiro a,
- inteiro b
- )
- {
- teste = a + b
- }
- }
- `;
- const lexer = Lexers['pt_br'];
- it(`should not result in SyntaxError`, () => {
- const as = new IVProgParser(input, lexer);
- const fun = as.parseTree.bind(as);
- expect(fun).not.toThrow();
- });
- });
|