This commit is contained in:
ProgramSnail 2023-05-16 20:45:41 +03:00
parent ce0ca2a5cb
commit 7fc56df2b7
4 changed files with 225 additions and 130 deletions

View file

@ -519,7 +519,9 @@ struct FunctionCallExpression {
std::vector<std::unique_ptr<TypeExpression>> parameters;
std::vector<SubExpressionToken> arguments;
utils::IdType function_id_;
// only one from two is present
std::optional<utils::IdType> function_id_;
std::optional<utils::IdType> typeclass_graph_id_;
};
struct TupleExpression {