tokensType.spec.js 266 B

12345678910111213
  1. describe("Testing Syntax Analysis: programa and global declararions...", () => {
  2. const input = `programa {
  3. const real PI
  4. const inteiro a[5][5]
  5. }`;
  6. it("it should returns a program with two const variables declararions", () => {
  7. });
  8. });