Skip to content

Commit 2ff0775

Browse files
authored
Add missing case to LocationCreator for PostExecutionCall. (#999)
1 parent 9966a74 commit 2ff0775

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

semanticcpg/src/main/scala/io/shiftleft/semanticcpg/language/LocationCreator.scala

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,14 @@ object LocationCreator {
6565
implicitCall.lineNumber,
6666
implicitCall.method
6767
)
68+
case postExecutionCall: nodes.PostExecutionCall =>
69+
apply(
70+
postExecutionCall,
71+
postExecutionCall.code,
72+
postExecutionCall.label,
73+
postExecutionCall.lineNumber,
74+
postExecutionCall.method
75+
)
6876
case method: nodes.Method =>
6977
apply(
7078
method,

0 commit comments

Comments
 (0)