diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2022-09-27 10:20:05 +0300 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2022-12-05 14:21:53 +0200 |
| commit | 83ae25fe87e3a56d169ae8cfc5bf20423d3ec4a5 (patch) | |
| tree | 922febad90ffa863c9e244dffbdb44957c5df273 /src | |
| parent | 18c241ff7a53625c6f3c4e6f20ee8df5bb37ddf3 (diff) | |
Add fatal builtin
Diffstat (limited to 'src')
| -rw-r--r-- | src/Builtins.hs | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/Builtins.hs b/src/Builtins.hs index 8dc96b2..d35ce17 100644 --- a/src/Builtins.hs +++ b/src/Builtins.hs @@ -18,7 +18,8 @@ builtinEnv = M.fromList [ builtinPrint, builtinConcat, builtinFmt, - ("unit", ASTUnit) + ("unit", ASTUnit), + builtinFatal ] argError1 :: Show a => String -> a -> String @@ -147,3 +148,11 @@ builtinFmt = (name, ASTFunction outer) where replaceAll n (x:xs) text = let text' = T.replace (T.pack $ "{" ++ show n ++ "}") (T.pack $ show x) text in replaceAll (n + 1) xs text' + +builtinFatal :: (String, AST) +builtinFatal = (name, ASTFunction outer) where + name = "fatal" + outer _ (ASTString str) = + throwL $ str + outer _ ast = + throwL $ argError1 name ast |
