call no string
This commit is contained in:
parent
98c40f4bf8
commit
f61d6a0179
|
@ -174,7 +174,8 @@ isNormalTok _ = False
|
||||||
isCallTok :: Lexeme -> Bool
|
isCallTok :: Lexeme -> Bool
|
||||||
isCallTok (Tok x) =
|
isCallTok (Tok x) =
|
||||||
all (\c -> not (isSymbol c) && not (isPunctuation c) || c `elem` identParts) 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 (Tok t) = t
|
||||||
unTok (QTok t _) = t
|
unTok (QTok t _) = t
|
||||||
|
|
Loading…
Reference in a new issue