2023-09-14 19:43:13 +03:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
|
|
#include "dvm.h"
|
2025-06-02 19:08:09 +03:00
|
|
|
#include "graph_calls.h"
|
2023-09-14 19:43:13 +03:00
|
|
|
|
|
|
|
|
extern void Private_Vars_Analyzer(SgStatement* start);
|
|
|
|
|
void PrivateAnalyzer(SgFile *file, std::vector<FuncInfo*> &funcs);
|
|
|
|
|
void PrivateAnalyzerForMain(SgStatement* start);
|