wip, debug

This commit is contained in:
Dmitry Zuikov 2024-05-12 09:47:57 +03:00
parent f69388b7ac
commit 279f178a45
1 changed files with 4 additions and 1 deletions

View File

@ -51,7 +51,8 @@ pattern Init <- ListVal [SymbolVal "init"]
pattern ScanGitLocal :: forall {c}. [ScanGitArgs] -> Syntax c
pattern ScanGitLocal e <- ListVal (SymbolVal "scan-git" : (scanGitArgs -> e))
pattern Update :: forall {c}. [ScanGitArgs] -> Syntax c
pattern Update e <- ListVal (SymbolVal "update" : (scanGitArgs -> e))
pattern ReadFixmeStdin :: forall {c}. Syntax c
pattern ReadFixmeStdin <- ListVal [SymbolVal "read-fixme-stdin"]
@ -526,6 +527,8 @@ run what = do
ScanGitLocal args -> scanGitLocal args Nothing
Update args -> scanGitLocal args Nothing
ReadFixmeStdin -> readFixmeStdin
ListVal [SymbolVal "print-env"] -> do