(n: Node)
| 95 | } |
| 96 | |
| 97 | function* formatAnnotations(n: Node) { |
| 98 | if (n.annotations.length) { |
| 99 | yield OPEN + SPACE; |
| 100 | yield n.annotations.map(formatAnnotationValue).join(SPACE); |
| 101 | yield SPACE + CLOSE; |
| 102 | } |
| 103 | } |
| 104 | |
| 105 | function* formatVariable(v: Variable) { |
| 106 | yield '$'; |
no outgoing calls
no test coverage detected
searching dependent graphs…