as_analyzer.h 253 B

123456789101112
  1. #ifndef FVM_AS_ANALYZER_H_
  2. #define FVM_AS_ANALYZER_H_
  3. #include "as_parser.h"
  4. #include "utils.h"
  5. struct symTableEntry;
  6. typedef struct symTableEntry * SymTableEntry;
  7. SymTableEntry * analyzeProg(Allocator alct, Prog prog);
  8. #endif // FVM_AS_ANALYZER_H_