Convert a target statement to its String representation.
(Stmt target)
| 35 | * Convert a target statement to its String representation. |
| 36 | */ |
| 37 | public String toString(Stmt target) { |
| 38 | return target == null ? |
| 39 | "[unknown]" : Integer.toString(target.getIndex()); |
| 40 | } |
| 41 | } |