Return a string representation of calling the function in an expression.
(self)
| 200 | return cls(r_type, name, arglist, brief, None, "", "", []) |
| 201 | |
| 202 | def invocation(self) -> str: |
| 203 | """Return a string representation of calling the function in an expression.""" |
| 204 | return (f"{self.name}{self.arglist.param_names_str()}") |
| 205 | |
| 206 | def declaration(self) -> str: |
| 207 | """Return a string representation of the function without semicolon.""" |
no test coverage detected