({ name, parentName, into })
| 33 | } |
| 34 | |
| 35 | function getReportName({ name, parentName, into }) { |
| 36 | if (into) { |
| 37 | return toPrimordialsName(into, name); |
| 38 | } |
| 39 | if (parentName) { |
| 40 | return toPrimordialsName(parentName, name); |
| 41 | } |
| 42 | return name; |
| 43 | } |
| 44 | |
| 45 | /** |
| 46 | * Get identifier of object spread assignment |
no test coverage detected
searching dependent graphs…