Skip to content
Snippets Groups Projects
Commit 0090c56c authored by Robbert Krebbers's avatar Robbert Krebbers
Browse files

Make introduction pattern parser more robust.

parent 6fc0ecff
No related branches found
No related tags found
No related merge requests found
...@@ -152,15 +152,23 @@ with parse_clear (ts : list token) (k : stack) : option stack := ...@@ -152,15 +152,23 @@ with parse_clear (ts : list token) (k : stack) : option stack :=
| _ => None | _ => None
end. end.
Definition parse (s : string) : option (list intro_pat) := Fixpoint close (k : stack) (ps : list intro_pat) : option (list intro_pat) :=
match k parse_go (tokenize s) [SList]; close_list k [] [] with match k with
| Some [SPat (IList [ps])] => Some ps | [] => Some ps
| SPat pat :: k => close k (pat :: ps)
| SAlwaysElim :: k => '(p,ps) maybe2 (::) ps; close k (IAlwaysElim p :: ps)
| SModalElim :: k => '(p,ps) maybe2 (::) ps; close k (IModalElim p :: ps)
| _ => None | _ => None
end. end.
Definition parse (s : string) : option (list intro_pat) :=
k parse_go (tokenize s) []; close k [].
Ltac parse s := Ltac parse s :=
lazymatch type of s with lazymatch type of s with
| list intro_pat => s | list intro_pat => s
| intro_pat => constr:([s])
| list string => | list string =>
lazymatch eval vm_compute in (mjoin <$> mapM parse s) with lazymatch eval vm_compute in (mjoin <$> mapM parse s) with
| Some ?pats => pats | _ => fail "invalid list intro_pat" s | Some ?pats => pats | _ => fail "invalid list intro_pat" s
...@@ -169,6 +177,7 @@ Ltac parse s := ...@@ -169,6 +177,7 @@ Ltac parse s :=
lazymatch eval vm_compute in (parse s) with lazymatch eval vm_compute in (parse s) with
| Some ?pats => pats | _ => fail "invalid list intro_pat" s | Some ?pats => pats | _ => fail "invalid list intro_pat" s
end end
| ?X => fail "intro_pat.parse:" s "has unexpected type" X
end. end.
Ltac parse_one s := Ltac parse_one s :=
lazymatch type of s with lazymatch type of s with
...@@ -177,6 +186,7 @@ Ltac parse_one s := ...@@ -177,6 +186,7 @@ Ltac parse_one s :=
lazymatch eval vm_compute in (parse s) with lazymatch eval vm_compute in (parse s) with
| Some [?pat] => pat | _ => fail "invalid intro_pat" s | Some [?pat] => pat | _ => fail "invalid intro_pat" s
end end
| ?X => fail "intro_pat.parse_one:" s "has unexpected type" X
end. end.
End intro_pat. End intro_pat.
...@@ -191,8 +201,10 @@ Fixpoint intro_pat_persistent (p : intro_pat) := ...@@ -191,8 +201,10 @@ Fixpoint intro_pat_persistent (p : intro_pat) :=
Ltac intro_pat_persistent p := Ltac intro_pat_persistent p :=
lazymatch type of p with lazymatch type of p with
| intro_pat => eval cbv in (intro_pat_persistent p) | intro_pat => eval cbv in (intro_pat_persistent p)
| list intro_pat => eval cbv in (forallb intro_pat_persistent p)
| string => | string =>
let pat := intro_pat.parse_one p in let pat := intro_pat.parse p in
eval cbv in (intro_pat_persistent pat) eval cbv in (forallb intro_pat_persistent pat)
| _ => p | bool => p
| ?X => fail "intro_pat_persistent:" p "has unexpected type" X
end. end.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment