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

Method getMacro

src/jvm/clojure/lang/LispReader.java:526–530  ·  view source on GitHub ↗
(int ch)

Source from the content-addressed store, hash-verified

524}
525
526static private IFn getMacro(int ch){
527 if(ch < macros.length)
528 return macros[ch];
529 return null;
530}
531
532static private boolean isMacro(int ch){
533 return (ch < macros.length && macros[ch] != null);

Callers 2

readMethod · 0.95
invokeMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected