enable type evaluation in eval system & watch views

This commit is contained in:
Ryan Fleury
2024-01-20 10:49:23 -08:00
parent f75ee24a2b
commit 921b555346
3 changed files with 31 additions and 2 deletions
+5
View File
@@ -1542,6 +1542,11 @@ eval_irtree_and_type_from_expr(Arena *arena, TG_Graph *graph, RADDBG_Parsed *rdb
}break;
case EVAL_ExprKind_TypeIdent:
{
result.tree = &eval_irtree_nil;
result.type_key = expr->type_key;
result.mode = EVAL_EvalMode_NULL;
}break;
case EVAL_ExprKind_Ptr:
case EVAL_ExprKind_Array:
case EVAL_ExprKind_Func: