[Lldb-commits] [lldb] [lldb][bytecode] Add missing selectors to formatter_bytecode.Compiler (PR #195328)
Dave Lee via lldb-commits
lldb-commits at lists.llvm.org
Fri May 1 12:03:54 PDT 2026
https://github.com/kastiglione created https://github.com/llvm/llvm-project/pull/195328
None
>From d9f7153deec3d0070f8b2facb85867e5b038b24f Mon Sep 17 00:00:00 2001
From: Dave Lee <davelee.com at gmail.com>
Date: Fri, 1 May 2026 12:03:26 -0700
Subject: [PATCH] [lldb][bytecode] Add missing selectors to
formatter_bytecode.Compiler
---
lldb/examples/python/formatter_bytecode.py | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/lldb/examples/python/formatter_bytecode.py b/lldb/examples/python/formatter_bytecode.py
index 1f9b3f4488c26..eea3b4e71d5a7 100644
--- a/lldb/examples/python/formatter_bytecode.py
+++ b/lldb/examples/python/formatter_bytecode.py
@@ -738,10 +738,16 @@ def next_byte():
"Cast": "@cast",
"GetChildAtIndex": "@get_child_at_index",
"GetChildMemberWithName": "@get_child_with_name",
+ "GetIndexOfChildWithName": "@get_child_index",
+ "GetNonSyntheticValue": "@get_non_synthetic_value",
+ "GetNumChildren": "@get_num_children",
"GetSummary": "@summary",
"GetSyntheticValue": "@get_synthetic_value",
"GetTemplateArgumentType": "@get_template_argument_type",
"GetType": "@get_type",
+ "GetValue": "@get_value",
+ "GetValueAsAddress": "@get_value_as_address",
+ "GetValueAsSigned": "@get_value_as_signed",
"GetValueAsUnsigned": "@get_value_as_unsigned",
}
More information about the lldb-commits
mailing list