mirror of
https://codeberg.org/ProgramSnail/lang_2023.git
synced 2026-01-25 13:07:13 +00:00
find_symbols_visitor, global_info fixed
This commit is contained in:
parent
4d0b527416
commit
a512a92f92
9 changed files with 289 additions and 277 deletions
|
|
@ -314,7 +314,6 @@ struct AliasDefinitionStatement {
|
|||
std::vector<AbstractTypeIdentifier> parameters;
|
||||
std::unique_ptr<TypeExpression> value;
|
||||
|
||||
std::vector<utils::IdType> parameter_graph_ids_;
|
||||
utils::IdType type_id_;
|
||||
};
|
||||
|
||||
|
|
@ -339,8 +338,6 @@ struct FunctionDefinitionStatement {
|
|||
SuperExpression value;
|
||||
|
||||
utils::IdType function_id_;
|
||||
std::vector<utils::IdType> argument_graph_ids_;
|
||||
utils::IdType return_type_graph_id_;
|
||||
};
|
||||
|
||||
struct TypeDefinitionStatement {
|
||||
|
|
@ -382,8 +379,6 @@ struct TypeDefinition {
|
|||
struct AnnotatedAbstractType {
|
||||
AbstractTypeIdentifier type;
|
||||
std::vector<std::unique_ptr<TypeclassExpression>> typeclasses;
|
||||
|
||||
utils::IdType type_graph_id_;
|
||||
};
|
||||
|
||||
// ----------------- Flow control -----------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue