* Create a new shield for the post. Add it to the end of the list of existing shields.
()
| 105 | */ |
| 106 | |
| 107 | newArrow() { |
| 108 | const newArrow = new Arrow(); |
| 109 | this.arrows.push(newArrow); |
| 110 | } |
| 111 | |
| 112 | deleteArrow(parentIndex,arrowIndex) { |
| 113 | var selectedArrow; |
nothing calls this directly
no outgoing calls
no test coverage detected