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

Method showEvalString

src/bsh/Interpreter.java:769–775  ·  view source on GitHub ↗
( String s )

Source from the content-addressed store, hash-verified

767 }
768
769 private String showEvalString( String s ) {
770 s = s.replace('\n', ' ');
771 s = s.replace('\r', ' ');
772 if ( s.length() > 80 )
773 s = s.substring( 0, 80 ) + " . . . ";
774 return s;
775 }
776
777 // end source and eval
778

Callers 1

evalMethod · 0.95

Calls 1

replaceMethod · 0.80

Tested by

no test coverage detected