mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-05 05:18:40 +00:00
expand cell capabilities to have meta data (expr name/description/etc.), as well as value editor, as well as fancy value editing widgets, all in one cell
This commit is contained in:
@@ -413,6 +413,12 @@ E_TYPE_ACCESS_FUNCTION_DEF(schema)
|
||||
{
|
||||
expr_is_simple = 1;
|
||||
}
|
||||
if(expr->kind == E_ExprKind_LeafIdentifier &&
|
||||
(str8_match(expr->string, str8_lit("true"), 0) ||
|
||||
str8_match(expr->string, str8_lit("false"), 0)))
|
||||
{
|
||||
expr_is_simple = 1;
|
||||
}
|
||||
if(!expr_is_simple && expr != &e_expr_nil)
|
||||
{
|
||||
child_type_key = e_type_key_cons_meta_expr(child_type_key, child->first->string);
|
||||
|
||||
Reference in New Issue
Block a user