#ifndef FVM_AS_ANALYZER_H_
#define FVM_AS_ANALYZER_H_

#include "as_parser.h"
#include "utils.h"

struct symTableEntry;
typedef struct symTableEntry * SymTableEntry;

SymTableEntry * analyzeProg(Allocator alct, Prog prog);

#endif // FVM_AS_ANALYZER_H_