Github Link

https://github.com/rusuraluca/lftc/tree/main/lftc_lab4


Docs


enum TokenTypes: for defining token types


class LexicalAnalyzer: for implementing the scanning algorithm


usage

  1. instantiate a LexicalAnalyzer object with the source code file path and the token file path
  2. call the scan_file method to perform lexical analysis, and generate PIF
  3. results are saved in 'ST.out' (symbol tables) and 'PIF.out' (Program Internal Form) output files but also outputted in the console
scan = LexicalAnalyzer('p1.txt', 'token.in')
scan.scan_file()