12345678910111213141516171819202122232425 |
- import { IVProgParser } from './../js/ast/ivprogParser';
- import { IVProgProcessor} from './../js/processor/ivprogProcessor'
- import { LanguageService } from '../js/services/languageService';
- describe('Multi(*) operation', function () {
- let input = `programa {
- funcao inicio() {
- inteiro a
- a = -2 + 2 * 4 + 2
- }
- }`;
- const lexer = LanguageService.getCurrentLexer();
- it(`should have higher priority than Sum(+)`, function (done) {
- const parser = new IVProgParser(input, lexer);
- const exec = new IVProgProcessor(parser.parseTree());
- exec.interpretAST().then(sto => {
- expect(sto.applyStore('a').number).toEqual(8);
- done();
- }).catch( err => done(err));
- });
- });
|