bf6 regress fixed

This commit is contained in:
voidlizard 2025-03-04 15:36:46 +03:00
parent 36f9937d7c
commit a85a95d1f2
1 changed files with 2 additions and 2 deletions

View File

@ -304,8 +304,8 @@ lambdaArgList :: Syntax c -> Maybe [Id]
lambdaArgList (ListVal a) = sequence argz
where
argz = flip fmap a \case
(SymbolVal x) | x `notElem` [".","_"] -> Just x
_ -> Nothing
(SymbolVal x) -> Just x
_ -> Nothing
lambdaArgList _ = Nothing