Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Types] Create function pointer type #387

Open
wants to merge 16 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
isort
  • Loading branch information
fnhartmann committed Feb 27, 2024
commit 1120e3ed24c73e1b0cc15df98e4fd93a549aea1e
2 changes: 1 addition & 1 deletion decompiler/backend/cexpressiongenerator.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from itertools import chain, repeat

from decompiler.structures import pseudo as expressions
from decompiler.structures.pseudo import Float, FunctionTypeDef, FunctionPointer, Integer, OperationType, Pointer, StringSymbol, Type
from decompiler.structures.pseudo import Float, FunctionPointer, FunctionTypeDef, Integer, OperationType, Pointer, StringSymbol, Type
from decompiler.structures.pseudo import instructions as instructions
from decompiler.structures.pseudo import operations as operations
from decompiler.structures.pseudo.operations import MemberAccess
Expand Down
2 changes: 1 addition & 1 deletion decompiler/structures/pseudo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@
Return,
)
from .operations import BinaryOperation, Call, Condition, ListOperation, Operation, OperationType, TernaryExpression, UnaryOperation
from .typing import CustomType, Float, FunctionTypeDef, FunctionPointer, Integer, Pointer, Type, TypeParser, UnknownType
from .typing import CustomType, Float, FunctionPointer, FunctionTypeDef, Integer, Pointer, Type, TypeParser, UnknownType
from .z3_logic import Z3Converter
Loading