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

Method isMacro

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

Source from the content-addressed store, hash-verified

530}
531
532static private boolean isMacro(int ch){
533 return (ch < macros.length && macros[ch] != null);
534}
535
536static private boolean isTerminatingMacro(int ch){
537 return (ch != '#' && ch != '\'' && ch != '%' && isMacro(ch));

Callers 3

readNumberMethod · 0.95
readUnicodeCharMethod · 0.95
isTerminatingMacroMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected