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 1
1
import ast
2
2
from llvmlite import ir
3
3
from .license_pass import license_processing
4
- from .functions_pass import func_proc
4
+ from .functions import func_proc
5
5
from .maps import maps_proc
6
6
from .structs import structs_proc
7
7
from .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 4
4
from typing import Any
5
5
from dataclasses import dataclass
6
6
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
11
11
12
12
logger = logging .getLogger (__name__ )
13
13
You can’t perform that action at this time.
0 commit comments