diff options
author | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-09 23:01:00 +0330 |
---|---|---|
committer | A404M <ahmadmahmoudiprogrammer@gmail.com> | 2025-05-09 23:01:00 +0330 |
commit | f5dfb8ca90a014a6b7667e5ded62e0bae1d60367 (patch) | |
tree | 1f032c667207a7dca719594b0b1ccfccae7e3492 /src/runner | |
parent | 5ff257eaefcb9e1ff30f4b2fe7edcc48b024ab45 (diff) |
add named imports
Diffstat (limited to 'src/runner')
-rw-r--r-- | src/runner/runner.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/runner/runner.c b/src/runner/runner.c index 6199244..7b09b9b 100644 --- a/src/runner/runner.c +++ b/src/runner/runner.c @@ -1315,9 +1315,11 @@ AstTree *runExpression(AstTree *expr, AstTreeScope *scope, bool *shouldRet, case AST_TREE_TOKEN_TYPE_F64: case AST_TREE_TOKEN_TYPE_F128: case AST_TREE_TOKEN_TYPE_CODE: + case AST_TREE_TOKEN_TYPE_NAMESPACE: case AST_TREE_TOKEN_VALUE_NULL: case AST_TREE_TOKEN_VALUE_UNDEFINED: case AST_TREE_TOKEN_VALUE_VOID: + case AST_TREE_TOKEN_VALUE_NAMESPACE: case AST_TREE_TOKEN_VALUE_INT: case AST_TREE_TOKEN_VALUE_BOOL: case AST_TREE_TOKEN_VALUE_FLOAT: |