feat: rename error to fail

This commit is contained in:
rvcas
2023-07-11 19:51:03 -04:00
committed by Lucas
parent 5318c94892
commit 1ab1ff9a1f
15 changed files with 43 additions and 41 deletions

View File

@@ -1,6 +1,6 @@
---
source: crates/aiken-lang/src/tests/format.rs
description: "Code:\n\nfn foo(output) {\n [\n output.address.stake_credential == Some(\n Inline(\n VerificationKeyCredential(\n #\"66666666666666666666666666666666666666666666666666666666\",\n ))\n )\n ,\n when output.datum is {\n InlineDatum(_) -> True\n _ -> error \"expected inline datum\"\n },\n ]\n |> list.and\n}\n"
description: "Code:\n\nfn foo(output) {\n [\n output.address.stake_credential == Some(\n Inline(\n VerificationKeyCredential(\n #\"66666666666666666666666666666666666666666666666666666666\",\n ))\n )\n ,\n when output.datum is {\n InlineDatum(_) -> True\n _ -> fail \"expected inline datum\"\n },\n ]\n |> list.and\n}\n"
---
fn foo(output) {
[
@@ -13,7 +13,7 @@ fn foo(output) {
),
when output.datum is {
InlineDatum(_) -> True
_ -> error @"expected inline datum"
_ -> fail @"expected inline datum"
},
]
|> list.and

View File

@@ -1,6 +1,6 @@
---
source: crates/aiken-lang/src/tests/format.rs
description: "Code:\n\nfn foo_1() {\n todo\n}\n\nfn foo_2() {\n todo \"my custom message\"\n}\n\nfn foo_3() {\n when x is {\n Foo -> True\n _ -> error\n }\n}\n\nfn foo_4() {\n if 14 == 42 {\n error \"I don't think so\"\n } else {\n trace \"been there\"\n True\n }\n}\n"
description: "Code:\n\nfn foo_1() {\n todo\n}\n\nfn foo_2() {\n todo \"my custom message\"\n}\n\nfn foo_3() {\n when x is {\n Foo -> True\n _ -> fail\n }\n}\n\nfn foo_4() {\n if 14 == 42 {\n fail \"I don't think so\"\n } else {\n trace \"been there\"\n True\n }\n}\n"
---
fn foo_1() {
todo
@@ -13,13 +13,13 @@ fn foo_2() {
fn foo_3() {
when x is {
Foo -> True
_ -> error
_ -> fail
}
}
fn foo_4() {
if 14 == 42 {
error @"I don't think so"
fail @"I don't think so"
} else {
trace @"been there"
True