Home
last modified time | relevance | path

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

/dports/devel/hs-ShellCheck/ShellCheck-0.8.0/src/ShellCheck/
H A DAnalytics.hs194 ,checkBlatantRecursion
4162 prop_checkBlatantRecursion1 = verify checkBlatantRecursion ":(){ :|:& };:"
4163 prop_checkBlatantRecursion2 = verify checkBlatantRecursion "f() { f; }"
4164 prop_checkBlatantRecursion3 = verifyNot checkBlatantRecursion "f() { command f; }"
4165 prop_checkBlatantRecursion4 = verify checkBlatantRecursion "cd() { cd \"$lol/$1\" || exit; }"
4166 prop_checkBlatantRecursion5 = verifyNot checkBlatantRecursion "cd() { [ -z \"$1\" ] || cd \"$1\"; }"
4167 prop_checkBlatantRecursion6 = verifyNot checkBlatantRecursion "cd() { something; cd $1; }"
4168 prop_checkBlatantRecursion7 = verifyNot checkBlatantRecursion "cd() { builtin cd $1; }"
4169 checkBlatantRecursion :: Parameters -> Token -> Writer [TokenComment] ()
4170 checkBlatantRecursion params t = function