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

Method isMacro

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

Source from the content-addressed store, hash-verified

369}
370
371static private boolean isMacro(int ch){
372 return (ch < macros.length && macros[ch] != null);
373}
374
375static private boolean isTerminatingMacro(int ch){
376 return (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