| 137 | } |
| 138 | |
| 139 | export class FunctionArg implements PythonCode { |
| 140 | public name: string; |
| 141 | public value: string | PythonCode; |
| 142 | |
| 143 | constructor(name: string, value: string | PythonCode) { |
| 144 | this.name = name; |
| 145 | this.value = value; |
| 146 | } |
| 147 | |
| 148 | toCode(): string { |
| 149 | return `${this.name}=${asString(this.value)}`; |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | export class FunctionCall implements PythonCode { |
| 154 | private args: PythonCode[]; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…