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

Method parse

src/jvm/clojure/lang/Compiler.java:708–714  ·  view source on GitHub ↗
(C context, Object form)

Source from the content-addressed store, hash-verified

706
707 static class Parser implements IParser{
708 public Expr parse(C context, Object form) {
709 Symbol sym = (Symbol) RT.second(form);
710 Var v = lookupVar(sym, false);
711 if(v != null)
712 return new TheVarExpr(v);
713 throw Util.runtimeException("Unable to resolve var: " + sym + " in this context");
714 }
715 }
716}
717

Callers

nothing calls this directly

Calls 3

secondMethod · 0.95
runtimeExceptionMethod · 0.95
lookupVarMethod · 0.80

Tested by

no test coverage detected