Skip to content

Commit

Permalink
Restore missing entry in FIle dataclass
Browse files Browse the repository at this point in the history
  • Loading branch information
patacca committed Jan 9, 2024
1 parent 9919e7c commit d932f57
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions src/bindiff/file.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,19 @@ class File:
"""

# fmt: off
id: int #: Unique ID of the file in database
filename: str #: file path
exefilename: str #: file name
hash: str #: SHA256 hash of the file
functions: int #: total number of functions
libfunctions: int #: total number of functions identified as library
calls: int #: number of calls
basicblocks: int #: number of basic blocks
libbasicblocks: int #: number of basic blocks belonging to library functions
edges: int #: number of edges in callgraph
libedges: int #: number of edges in callgraph addressing a library
instructions: int #: number of instructions
id: int #: Unique ID of the file in database
filename: str #: file path
exefilename: str #: file name
hash: str #: SHA256 hash of the file
functions: int #: total number of functions
libfunctions: int #: total number of functions identified as library
calls: int #: number of calls
basicblocks: int #: number of basic blocks
libbasicblocks: int #: number of basic blocks belonging to library functions
edges: int #: number of edges in callgraph
libedges: int #: number of edges in callgraph addressing a library
instructions: int #: number of instructions
libinstructions: int #: number of instructions in library functions
# fmt: on


Expand Down

0 comments on commit d932f57

Please sign in to comment.