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

Method getMacro

src/jvm/clojure/lang/EdnReader.java:365–369  ·  view source on GitHub ↗
(int ch)

Source from the content-addressed store, hash-verified

363}
364
365static private IFn getMacro(int ch){
366 if(ch < macros.length)
367 return macros[ch];
368 return null;
369}
370
371static private boolean isMacro(int ch){
372 return (ch < macros.length && macros[ch] != null);

Callers 2

readMethod · 0.95
readDelimitedListMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected