diff options
| author | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-12 21:17:36 +0000 |
|---|---|---|
| committer | Zuhaitz Méndez Fernández de Aránguiz <zuhaitz@debian> | 2026-01-12 21:17:36 +0000 |
| commit | 5e119f776780c05ca2002ef692d7458801585bdc (patch) | |
| tree | e61a125cf5a554181d445d529022d64f730f2041 /src/parser/parser_expr.c | |
| parent | 097bb1fb97b9a4da82d191d316fa821d74d12152 (diff) | |
lowercase types support.
Diffstat (limited to 'src/parser/parser_expr.c')
| -rw-r--r-- | src/parser/parser_expr.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/parser/parser_expr.c b/src/parser/parser_expr.c index b451a26..93a50e2 100644 --- a/src/parser/parser_expr.c +++ b/src/parser/parser_expr.c @@ -2855,7 +2855,6 @@ ASTNode *parse_expr_prec(ParserContext *ctx, Lexer *l, Precedence min_prec) call->call.arg_names = has_named ? arg_names : NULL; call->call.arg_count = arg_count; - // FIX: Propagate return type from function type info call->resolved_type = xstrdup("unknown"); if (lhs->type_info && lhs->type_info->kind == TYPE_FUNCTION && lhs->type_info->inner) { @@ -3037,7 +3036,6 @@ ASTNode *parse_expr_prec(ParserContext *ctx, Lexer *l, Precedence min_prec) node->type_info = get_field_type(ctx, lhs->type_info, node->member.field); - // FIX: If not a field, check if it is a method if (!node->type_info && lhs->type_info) { char *struct_name = NULL; |
