()
| 57 | } |
| 58 | |
| 59 | @Override |
| 60 | public String toString() { |
| 61 | ST st = event.scope.st; |
| 62 | if ( st.isAnonSubtemplate() ) return "{...}"; |
| 63 | if ( st.debugState!=null && st.debugState.newSTEvent!=null ) { |
| 64 | String label = st.toString()+" @ "+st.debugState.newSTEvent.getFileName()+":" + |
| 65 | st.debugState.newSTEvent.getLine(); |
| 66 | return "<html><b>" + |
| 67 | StringRenderer.escapeHTML(label)+"</b></html>"; |
| 68 | } |
| 69 | else { |
| 70 | return st.toString(); |
| 71 | } |
| 72 | } |
| 73 | } |
| 74 | |
| 75 |
nothing calls this directly
no test coverage detected