diff options
Diffstat (limited to 'cljcc-compiler/src/cljcc/exception.cljc')
| -rw-r--r-- | cljcc-compiler/src/cljcc/exception.cljc | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/cljcc-compiler/src/cljcc/exception.cljc b/cljcc-compiler/src/cljcc/exception.cljc deleted file mode 100644 index 40ea930..0000000 --- a/cljcc-compiler/src/cljcc/exception.cljc +++ /dev/null @@ -1,21 +0,0 @@ -(ns cljcc.exception) - -(defn lex-error [{line :line col :col :as data}] - (throw (ex-info - (format "Invalid token at line: %s, col: %s." line col) - (merge {:error/type :lexer} data)))) - -(defn parser-error [msg data] - (throw (ex-info msg (merge {:error/type :parser} data)))) - -(defn analyzer-error [msg data] - (throw (ex-info msg (merge {:error/type :analyzer} data)))) - -(defn tacky-error [msg data] - (throw (ex-info msg (merge {:error/type :tacky} data)))) - -(defn compiler-error [msg data] - (throw (ex-info msg (merge {:error/type :compiler} data)))) - -(defn emit-error [msg data] - (throw (ex-info msg (merge {:error/type :emit} data)))) |
