add assignment dict handling to class_handler.py

This commit is contained in:
2025-10-20 04:41:00 +05:30
parent 8da50b7068
commit eee212795f
2 changed files with 31 additions and 6 deletions

View File

@ -55,11 +55,11 @@ def processor(source_code, filename, module):
for func_node in bpf_chunks:
logger.info(f"Found BPF function/struct: {func_node.name}")
vmlinux_proc(tree, module)
vmlinux_symtab = vmlinux_proc(tree, module)
populate_global_symbol_table(tree, module)
license_processing(tree, module)
globals_processing(tree, module)
print("DEBUG:", vmlinux_symtab)
structs_sym_tab = structs_proc(tree, module, bpf_chunks)
map_sym_tab = maps_proc(tree, module, bpf_chunks)
func_proc(tree, module, bpf_chunks, map_sym_tab, structs_sym_tab)