| 25 | } |
| 26 | |
| 27 | export class Variable implements PythonCode { |
| 28 | name: string; |
| 29 | constructor(name: string) { |
| 30 | this.name = name; |
| 31 | } |
| 32 | |
| 33 | toCode(): string { |
| 34 | return this.name; |
| 35 | } |
| 36 | } |
| 37 | |
| 38 | interface LiteralOptions { |
| 39 | removeNull?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…