1234567891011121314151617181920212223242526 |
- import Lexers from './../grammar/';
- import {Types} from './../js/ast/types';
- import { IVProgParser } from './../js/ast/ivprogParser';
- import { IVProgProcessor} from './../js/processor/ivprogProcessor'
- describe('Multi(*) operation', function (done) {
- let input = `programa {
- funcao inicio() {
- inteiro a
- a = -2 + 2 * 4
- }
- }`;
- const lexer = Lexers['pt_br'];
- it(`should have higher priority than Sum(+)`, function () {
- const parser = new IVProgParser(input, lexer);
- const exec = new IVProgProcessor(parser.parseTree());
- exec.interpretAST().then(sto => {
- expect(sto.applyStore('a').value).toEqual(6);
- done();
- });
- });
- });
|