File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 11import ast
22from llvmlite import ir
33from .license_pass import license_processing
4- from .functions_pass import func_proc
4+ from .functions import func_proc
55from .maps import maps_proc
66from .structs import structs_proc
77from .globals_pass import globals_processing
Original file line number Diff line number Diff line change 1+ from .functions_pass import func_proc
2+
3+ __all__ = ["func_proc" ]
Original file line number Diff line number Diff line change 44from typing import Any
55from dataclasses import dataclass
66
7- from .helper import HelperHandlerRegistry , handle_helper_call
8- from .type_deducer import ctypes_to_ir
9- from .binary_ops import handle_binary_op
10- from .expr_pass import eval_expr , handle_expr
7+ from pythonbpf .helper import HelperHandlerRegistry , handle_helper_call
8+ from pythonbpf .type_deducer import ctypes_to_ir
9+ from pythonbpf .binary_ops import handle_binary_op
10+ from pythonbpf .expr_pass import eval_expr , handle_expr
1111
1212logger = logging .getLogger (__name__ )
1313
You can’t perform that action at this time.
0 commit comments