mirror of
https://codeberg.org/ProgramSnail/lang.git
synced 2025-12-06 23:18:45 +00:00
28 lines
497 B
C++
28 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
|