main.js 966 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. import {
  2. InputStream,
  3. CommonTokenStream
  4. } from 'antlr4/index';
  5. import { IVProgParser } from './ast/ivprogParser';
  6. import Lexers from '../grammar/';
  7. const lang = 'pt_br';
  8. const ivprogLexer = Lexers[lang];
  9. const input = `programa {
  10. const inteiro a[1][1] = {
  11. {
  12. 1,2,3
  13. },
  14. {
  15. 1,3
  16. }
  17. }
  18. funcao inicio() {
  19. retorna
  20. }
  21. }`;
  22. // let input2 = 'test = i\nb = i + 1\n';
  23. // const lexer = new ivprogLexer(new InputStream(input));
  24. // const stream = new CommonTokenStream(lexer);
  25. // stream.fill();
  26. // let i = 1;
  27. // let token = null;
  28. // while ((token = stream.LT(i)).type !== ivprogLexer.EOF && token.type !== ivprogLexer.WHITESPACE) {
  29. // console.log(`${token.type}-${token.text}`);
  30. // console.log('\n')
  31. // i++;
  32. // }
  33. const anaSin = new IVProgParser(input, ivprogLexer);
  34. try {
  35. console.log(anaSin.parseTree());
  36. } catch(a) {
  37. console.log(a);
  38. }