123456789101112131415161718192021222324 |
- import Lexers from './../grammar/';
- import { IVProgParser } from './../js/ast/ivprogParser';
- import { IVProgProcessor} from './../js/processor/ivprogProcessor'
- describe('An assignment to a variable', function () {
- const input = `programa {
- funcao inicio() {
- inteiro a
- a = 5.5
- }
- }`;
- const lexer = Lexers['pt_br'];
- it(`should respect the variable type`, function (done) {
- const parser = new IVProgParser(input, lexer);
- const exec = new IVProgProcessor(parser.parseTree());
- exec.interpretAST().then(sto => {
- done(new Error('Should not have resolved'));
- }).catch( _ => done());
- });
- });
|