Skip to content

Commit

Permalink
AST.Util: missed ShowOptions case
Browse files Browse the repository at this point in the history
  • Loading branch information
mtzguido committed Oct 14, 2024
1 parent 4d38764 commit 75d71f8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/parser/FStarC.Parser.AST.Util.fst
Original file line number Diff line number Diff line change
Expand Up @@ -462,6 +462,7 @@ let eq_lift (t1 t2: lift) =

let eq_pragma (t1 t2: pragma) =
match t1, t2 with
| ShowOptions, ShowOptions -> true
| SetOptions s1, SetOptions s2 -> s1 = s2
| ResetOptions s1, ResetOptions s2 -> eq_option (fun s1 s2 -> s1 = s2) s1 s2
| PushOptions s1, PushOptions s2 -> eq_option (fun s1 s2 -> s1 = s2) s1 s2
Expand Down

0 comments on commit 75d71f8

Please sign in to comment.