debug utility to display a JS object @param object an object @return a string representation of the object
(Object object)
| 161 | * @return a string representation of the object |
| 162 | */ |
| 163 | private String toString(Object object) { |
| 164 | StringBuffer buffer = new StringBuffer(); |
| 165 | append(buffer, object); |
| 166 | return buffer.toString(); |
| 167 | |
| 168 | } |
| 169 | |
| 170 | ////////////////////// |
| 171 |
no test coverage detected