c-repl/src/include/utils.h
2023-12-08 16:19:41 +01:00

17 lines
267 B
C++

#ifndef DEF_UTILS_H
#define DEF_UTILS_H
#include "types.h"
using namespace std;
/**
* Returns the CodePosition of a node
*/
CodePosition get_node_pos(Node node);
/**
* Returns the Type associated with a type name
*/
Type string_to_type(string type_name);
#endif