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

Method fwdPath

src/jvm/clojure/lang/Compiler.java:7835–7840  ·  view source on GitHub ↗
(PathNode p1)

Source from the content-addressed store, hash-verified

7833//}
7834
7835static ISeq fwdPath(PathNode p1){
7836 ISeq ret = null;
7837 for(;p1 != null;p1 = p1.parent)
7838 ret = RT.cons(p1,ret);
7839 return ret;
7840}
7841
7842static PathNode commonPath(PathNode n1, PathNode n2){
7843 ISeq xp = fwdPath(n1);

Callers 1

commonPathMethod · 0.95

Calls 1

consMethod · 0.95

Tested by

no test coverage detected