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