We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 25f2b86 commit 4eb58f6Copy full SHA for 4eb58f6
1 file changed
analysis/reanalyze/src/Arnold.ml
@@ -967,14 +967,13 @@ module Compile = struct
967
| Texp_tuple expressions | Texp_array expressions ->
968
expressions |> List.map (expression ~ctx) |> Command.unorderedSequence
969
| Texp_assert _ -> Command.nothing
970
- | Texp_try (e, cases, finally_expr) ->
+ | Texp_try (e, cases, finally_expr) -> (
971
let cE = e |> expression ~ctx in
972
let cCases = cases |> List.map (case ~ctx) |> Command.nondet in
973
let open Command in
974
- begin match finally_expr with
+ match finally_expr with
975
| Some finally -> cE +++ cCases +++ (finally |> expression ~ctx)
976
- | None -> cE +++ cCases
977
- end
+ | None -> cE +++ cCases)
978
| Texp_variant (_label, eOpt) -> eOpt |> expressionOpt ~ctx
979
| Texp_while _ ->
980
notImplemented "Texp_while";
0 commit comments