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

@@ -57,7 +57,7 @@ TEST_CASE("meta/meta_examples/classes/type") {
// prints all class methods
fmt::print("* rectangle:\n");
for ( auto&& [index, method] : rectangle_type.get_methods() ) {
fmt::print(" + {}/{}\n", index.name, index.type.get_arity());
fmt::print(" + {}/{}\n", index.get_name(), index.get_type().get_arity());
}
}