MCPcopy Index your code
hub / github.com/beanshell/beanshell / toString

Method toString

src/bsh/CallStack.java:125–132  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

123 }
124*/
125 public String toString() {
126 StringBuilder sb = new StringBuilder();
127 sb.append("CallStack:\n");
128 for( int i=stack.size()-1; i>=0; i-- )
129 sb.append("\t"+stack.get(i)+"\n");
130
131 return sb.toString();
132 }
133
134 /**
135 Occasionally we need to freeze the callstack for error reporting

Callers

nothing calls this directly

Calls 3

appendMethod · 0.80
getMethod · 0.65
sizeMethod · 0.45

Tested by

no test coverage detected