Pass map_sym_tab to handle_struct_field_assign

This commit is contained in:
Pragyansh Chaturvedi
2025-10-12 10:37:20 +05:30
parent 64e44d0d58
commit 08c0ccf0ac
2 changed files with 12 additions and 3 deletions

View File

@ -84,7 +84,14 @@ def handle_assign(
if isinstance(target, ast.Attribute):
# NOTE: Struct field assignment case: pkt.field = value
handle_struct_field_assignment(
func, module, builder, target, rval, local_sym_tab, structs_sym_tab
func,
module,
builder,
target,
rval,
local_sym_tab,
map_sym_tab,
structs_sym_tab,
)
return