call no string

This commit is contained in:
Mirek Kratochvil 2023-03-05 21:53:47 +01:00
parent 98c40f4bf8
commit f61d6a0179

View file

@ -174,7 +174,8 @@ isNormalTok _ = False
isCallTok :: Lexeme -> Bool
isCallTok (Tok x) =
all (\c -> not (isSymbol c) && not (isPunctuation c) || c `elem` identParts) x
isCallTok _ = True
isCallTok (QTok _ _) = True
isCallTok _ = False
unTok (Tok t) = t
unTok (QTok t _) = t