2024-02-27 08:45:58 +01:00

14 lines
227 B
C++

#pragma once
#include "AST/Base.h"
#include <string>
namespace ast
{
class Import : public ASTNode
{
public:
Import(const std::string &moduleName) : moduleName(moduleName) {}
const std::string moduleName;
};
}