MCPcopy Index your code
hub / github.com/clojure/clojure / errPrintWriter

Method errPrintWriter

src/jvm/clojure/lang/RT.java:273–280  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

271
272// duck typing stderr plays nice with e.g. swank
273public static PrintWriter errPrintWriter(){
274 Writer w = (Writer) ERR.deref();
275 if (w instanceof PrintWriter) {
276 return (PrintWriter) w;
277 } else {
278 return new PrintWriter(w);
279 }
280}
281
282static public final Object[] EMPTY_ARRAY = new Object[]{};
283static public final Comparator DEFAULT_COMPARATOR = new DefaultComparator();

Callers 11

mainMethod · 0.95
parseMethod · 0.95
InstanceFieldExprMethod · 0.95
InstanceMethodExprMethod · 0.95
StaticMethodExprMethod · 0.95
NewExprMethod · 0.95
parseMethod · 0.95
parseMethod · 0.95
CaseExprMethod · 0.95
emitExprForIntsMethod · 0.95
checkReplacementMethod · 0.95

Calls 1

derefMethod · 0.65

Tested by

no test coverage detected