hoolang/HooCore.hpp

17 lines
270 B
C++

#pragma once
#include "antlr4-runtime.h"
#include <string>
class HooCore
{
public:
HooCore() {}
~HooCore() {}
public:
static std::any compile(std::string &input, std::string &moduleName);
static antlr4::tree::ParseTree *parse(std::string &input);
};