diff options
author | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-05-12T11·23+0000 |
---|---|---|
committer | Eelco Dolstra <e.dolstra@tudelft.nl> | 2010-05-12T11·23+0000 |
commit | 81a4b4e49bf82f17eef20d78c4f505874cf5532e (patch) | |
tree | e5fa0c53c248cc341b964332911f4a44be4a0127 /tests/lang | |
parent | 1a8eb6e3ec9329ee7b61ac2345c6e1d994905813 (diff) |
* Implemented tryEval, the last missing primop in the fast-eval
branch. Also added a test for tryEval.
Diffstat (limited to 'tests/lang')
-rw-r--r-- | tests/lang/eval-okay-tryeval.exp | 1 | ||||
-rw-r--r-- | tests/lang/eval-okay-tryeval.nix | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/tests/lang/eval-okay-tryeval.exp b/tests/lang/eval-okay-tryeval.exp new file mode 100644 index 000000000000..c2788b412288 --- /dev/null +++ b/tests/lang/eval-okay-tryeval.exp @@ -0,0 +1 @@ +{ x = { value = "x"; success = true; }; y = { value = false; success = false; }; z = { value = false; success = false; }; } diff --git a/tests/lang/eval-okay-tryeval.nix b/tests/lang/eval-okay-tryeval.nix new file mode 100644 index 000000000000..629bc440a85a --- /dev/null +++ b/tests/lang/eval-okay-tryeval.nix @@ -0,0 +1,5 @@ +{ + x = builtins.tryEval "x"; + y = builtins.tryEval (assert false; "y"); + z = builtins.tryEval (throw "bla"); +} |