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

Method classWriter

src/jvm/clojure/lang/Compiler.java:9668–9680  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

9666static IPersistentCollection emptyVarCallSites(){return PersistentHashSet.EMPTY;}
9667
9668 static public ClassWriter classWriter() {
9669 return new ClassWriter(ClassWriter.COMPUTE_MAXS + ClassWriter.COMPUTE_FRAMES) {
9670 protected String getCommonSuperClass (final String type1, final String type2) {
9671 return "java/lang/Object";
9672// if (!(type1.equals("java/lang/Object") || type2.equals("java/lang/Object"))) {
9673// RT.errPrintWriter()
9674// .format("stack map frame \"%s\" and \"%s\" on %s:%d:%d \n",
9675// type1, type2,
9676// SOURCE_PATH.deref(), LINE.deref(), COLUMN.deref());
9677// }
9678 }
9679 };
9680 }
9681}

Callers 3

compileMethod · 0.95
compileMethod · 0.80
compileStubMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected