Exercise 42 from the second edition of How to Design Programs explains that DrRacket highlights the last two cond clauses in the code below because the test cases do not cover all possible cases.
; TrafficLight -> TrafficLight
; given state s, determine the next state of the traffic light
(check-expect (traffic-light-next "red") "green")
(define (traffic-light-next s)
(cond
[(string=? "red" s) "green"]
[(string=? "green" s) "yellow"]
[(string=? "yellow" s) "red"]))
My understanding is that an else clause at the end should cover the remaining cases, so I tried replacing the last expressions:
(define (traffic-light-next s)
(cond
[(string=? "red" s) "green"]
[(string=? "green" s) "yellow"]
[(string=? "yellow" s) "red"]
[else "green"]))
This does not solve the highlighting problem. What is going on here?