huge structure refactoring

This commit is contained in:
BlackMATov
2022-02-05 05:56:22 +07:00
parent bb2a3ead6b
commit fd0d5ed4b2
91 changed files with 4056 additions and 1739 deletions

View File

@@ -73,6 +73,6 @@ TEST_CASE("meta/meta_examples/functions/usage") {
// prints all functions in the scope
fmt::print("* {}:\n", math_scope.get_name());
for ( auto&& [index, function] : math_scope.get_functions() ) {
fmt::print(" + {}/{}\n", index.name, function.get_type().get_arity());
fmt::print(" + {}/{}\n", index.get_name(), function.get_type().get_arity());
}
}