mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2025-12-06 15:08:48 +00:00
27 lines
497 B
C++
27 lines
497 B
C++
#pragma once
|
|
|
|
#include "basic_nodes.hpp"
|
|
|
|
#include <vector>
|
|
|
|
// IN PROGRESS
|
|
|
|
namespace nodes {
|
|
|
|
class Import : public Node {
|
|
public:
|
|
private:
|
|
Identifier import_name_;
|
|
Identifier module_name_;
|
|
std::vector<Identifier> symbols_;
|
|
}; // IN PROGRESS
|
|
|
|
class Constraint : public Node {}; // IN PROGRESS
|
|
|
|
class TypeDefinition : public Node {}; // IN PROGRESS
|
|
|
|
class FunctionDefinition : public Node {}; // IN PROGRESS
|
|
|
|
class TypeclassDefinition : public Node {}; // IN PROGRESS
|
|
|
|
} // namespace nodes
|