mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-07-29 10:40:02 +00:00
ellipses for unfinished arrays/structs in eval single-line visualization
This commit is contained in:
@@ -141,6 +141,7 @@ e_dynamically_typed_eval_from_eval(E_Eval eval)
|
||||
internal E_Eval
|
||||
e_value_eval_from_eval(E_Eval eval)
|
||||
{
|
||||
ProfBeginFunction();
|
||||
if(eval.mode == E_Mode_Offset)
|
||||
{
|
||||
E_TypeKey type_key = e_type_unwrap(eval.type_key);
|
||||
@@ -190,6 +191,7 @@ e_value_eval_from_eval(E_Eval eval)
|
||||
}
|
||||
}
|
||||
}
|
||||
ProfEnd();
|
||||
return eval;
|
||||
|
||||
// TODO(rjf): @spaces check regs path
|
||||
|
||||
@@ -22,6 +22,7 @@ e_select_interpret_ctx(E_InterpretCtx *ctx)
|
||||
internal B32
|
||||
e_space_read(E_Space space, void *out, Rng1U64 range)
|
||||
{
|
||||
ProfBeginFunction();
|
||||
B32 result = 0;
|
||||
switch(space)
|
||||
{
|
||||
@@ -41,6 +42,7 @@ e_space_read(E_Space space, void *out, Rng1U64 range)
|
||||
result = e_interpret_ctx->space_read(e_interpret_ctx->space_read_user_data, space, out, range);
|
||||
}break;
|
||||
}
|
||||
ProfEnd();
|
||||
return result;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user