Skip to content
Snippets Groups Projects
Commit 1934c6c2 authored by Stephan Seitz's avatar Stephan Seitz
Browse files

Add called function to FunctionCall.args

parent 18f91a4f
No related merge requests found
Pipeline #19716 failed with stage
in 1 minute and 54 seconds
......@@ -102,7 +102,7 @@ class FunctionCall(Node):
@property
def args(self):
return [p.symbol for p in self.kernel_function.get_parameters()]
return [p.symbol for p in self.kernel_function.get_parameters()] + [self.kernel_function]
@property
def symbols_defined(self) -> Set[sp.Symbol]:
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment