Home
last modified time | relevance | path

Searched refs:producesComments (Results 1 – 4 of 4) sorted by relevance

/dports/devel/hs-ShellCheck/ShellCheck-0.8.0/src/ShellCheck/Checks/
H A DShellSupport.hs69 verify c s = producesComments (testChecker c) s == Just True
70 verifyNot c s = producesComments (testChecker c) s == Just False
H A DCommands.hs53 verify f s = producesComments (getChecker [f]) s == Just True
54 verifyNot f s = producesComments (getChecker [f]) s == Just False
/dports/devel/hs-ShellCheck/ShellCheck-0.8.0/src/ShellCheck/
H A DAnalyzerLib.hs143 producesComments :: Checker -> String -> Maybe Bool
144 producesComments c s = do function
H A DAnalytics.hs26 import ShellCheck.AnalyzerLib hiding (producesComments)
286 verifyTree f s = producesComments f s == Just True
289 verifyNotTree f s = producesComments f s == Just False
306 checkNode f = producesComments (runNodeAnalysis f)
307 producesComments :: (Parameters -> Token -> [TokenComment]) -> String -> Maybe Bool
308 producesComments f s = not . null <$> runAndGetComments f s function