(el: Element)
| 187 | return el instanceof graphicUtil.Path; |
| 188 | } |
| 189 | function isDisplayable(el: Element) : el is Displayable { |
| 190 | return el instanceof Displayable; |
| 191 | } |
| 192 | function copyElement(sourceEl: Element, targetEl: Element) { |
| 193 | targetEl.copyTransform(sourceEl); |
| 194 | if (isDisplayable(targetEl) && isDisplayable(sourceEl)) { |
no outgoing calls
no test coverage detected
searching dependent graphs…