[Lldb-commits] [lldb] e29aa9e - [lldb][bytecode] Add missing selectors to formatter_bytecode.Compiler (#195328)

via lldb-commits lldb-commits at lists.llvm.org
Fri May 1 14:10:39 PDT 2026


Author: Dave Lee
Date: 2026-05-01T14:10:34-07:00
New Revision: e29aa9efddab09c5f9b9e2e91955ae9559ff5f18

URL: https://github.com/llvm/llvm-project/commit/e29aa9efddab09c5f9b9e2e91955ae9559ff5f18
DIFF: https://github.com/llvm/llvm-project/commit/e29aa9efddab09c5f9b9e2e91955ae9559ff5f18.diff

LOG: [lldb][bytecode] Add missing selectors to formatter_bytecode.Compiler (#195328)

Added: 
    

Modified: 
    lldb/examples/python/formatter_bytecode.py

Removed: 
    


################################################################################
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