lang: ast: implement parsing 'use' statements

This commit is contained in:
2024-11-25 16:49:07 +00:00
parent f1032f0c8e
commit dca0aba183
3 changed files with 112 additions and 1 deletions

View File

@@ -153,7 +153,7 @@ struct ivy_ast_unit_package_node {
b_queue n_ident;
};
struct ivy_ast_unit_use_node {
struct ivy_ast_unit_import_node {
struct ivy_ast_node n_base;
/* queue of struct ivy_token; list of multi-part identifier parts. */
b_queue n_ident;