Skip to content

Commit

Permalink
Ignore type error
Browse files Browse the repository at this point in the history
  • Loading branch information
filipeom committed Nov 29, 2024
1 parent a751b07 commit 4a24751
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions parser/src/traverse/dependency/dep_builder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -652,6 +652,7 @@ function mapCallArguments(callNode: GraphNode, _functionContext: number, callNam
const auxiliaryFunctionSummary: boolean = config.summaries.auxiliary_functions.includes(callName);
if (auxiliaryFunctionSummary) {
// Get arguments that are functions
// @ts-ignore
const innerFunctions: GraphNode[] = callArgs.filter(arg => arg.identifier != null)
.map(arg => trackers.getFunctionNodeFromName(arg.identifier ?? "?"))
.filter((fn: GraphNode | undefined) => fn !== undefined)
Expand Down

0 comments on commit 4a24751

Please sign in to comment.