(node)
| 211 | } |
| 212 | |
| 213 | function fixSourceSpan(node) { |
| 214 | if (node.sourceSpan && node.endSourceSpan) { |
| 215 | node.sourceSpan = new ParseSourceSpan( |
| 216 | node.sourceSpan.start, |
| 217 | node.endSourceSpan.end, |
| 218 | ); |
| 219 | } |
| 220 | } |
| 221 | |
| 222 | function normalizeName(node, parseOptions) { |
| 223 | if (node.kind === "element") { |
no outgoing calls
no test coverage detected
searching dependent graphs…