catch exceptions hook, line, and sinker

Handle use in macros

+1 -1
+1 -1
src/noahtheduke/sinker.clj
··· 51 52 (defn parse-clause 53 [expr] 54 - (case (and (list? expr) (first expr)) 55 catch (parse-catch-clause expr) 56 finally (parse-finally-clause expr) 57 #_:else (parse-expr expr)))
··· 51 52 (defn parse-clause 53 [expr] 54 + (case (and (sequential? expr) (not (vector? expr)) (first expr)) 55 catch (parse-catch-clause expr) 56 finally (parse-finally-clause expr) 57 #_:else (parse-expr expr)))