12 lines
208 B
C++
12 lines
208 B
C++
#ifndef ANALYSIS_H
|
|
#define ANALYSIS_H
|
|
|
|
#include "types.h"
|
|
#include "memory.h"
|
|
using namespace std;
|
|
|
|
using AnalysisResult = variant<Type, monostate>;
|
|
|
|
AnalysisResult analyze(Node &ast, Memory &memory);
|
|
|
|
#endif |