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

Method execute

src/jvm/clojure/lang/Agent.java:87–103  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

85 }
86
87 void execute(){
88 try
89 {
90 exec.execute(this);
91 }
92 catch(Throwable error)
93 {
94 if(agent.errorHandler != null)
95 {
96 try
97 {
98 agent.errorHandler.invoke(agent, error);
99 }
100 catch(Throwable e) {} // ignore errorHandler errors
101 }
102 }
103 }
104
105 static void doRun(Action action){
106 try

Callers 3

doRunMethod · 0.45
restartMethod · 0.45
enqueueMethod · 0.45

Calls 1

invokeMethod · 0.65

Tested by

no test coverage detected