(f: Function)
| 115 | } |
| 116 | |
| 117 | function* formatFunction(f: Function) { |
| 118 | yield f.name; |
| 119 | yield '('; |
| 120 | yield Object.values(f.parameters).map(formatScalar).join(SEP); |
| 121 | yield ')'; |
| 122 | } |
| 123 | |
| 124 | function* trimStart(g: Generator<string>) { |
| 125 | let n; |
no outgoing calls
no test coverage detected
searching dependent graphs…