123456789101112131415161718192021222324252627282930 |
- import Lexers from './../grammar/';
- import {Types} from './../js/ast/types';
- import { IVProgParser } from './../js/ast/ivprogParser';
- import { IVProgProcessor} from './../js/processor/ivprogProcessor'
- describe('A finite while loop', function () {
- let input = `programa {
- funcao inicio() {
- inteiro a = 0
- inteiro b = 0
- enquanto (a < 5) {
- a = a + 1
- }
- b = 8
- }
- }`;
- const lexer = Lexers['pt_br'];
- it(`should terminate`, function (done) {
- const parser = new IVProgParser(input, lexer);
- const exec = new IVProgProcessor(parser.parseTree());
- exec.interpretAST().then(sto => {
- expect(sto.applyStore('a').value).toEqual(5);
- done();
- }).catch( err => done(err));
- });
- });
|