1
1
mirror of https://github.com/github/semantic.git synced 2025-01-05 22:28:10 +03:00
This commit is contained in:
Ayman Nadeem 2020-05-13 11:32:46 -04:00
parent 2854bb8e87
commit 5fb36f4386

View File

@ -215,10 +215,14 @@ instance ToTags Rb.If where
_ -> pure ()
instance ToTags Rb.Elsif where
tags Rb.Elsif {condition, consequence, alternative} = do
tags condition
maybe (pure ()) tags consequence
maybe (pure ()) tags alternative
tags Rb.Elsif {condition = Parse.Success cond, consequence, alternative} = do
tags cond
case consequence of
Just (Parse.Success cons) -> tags cons
_ -> pure ()
case alternative of
Just (Parse.Success alt) -> tags alt
_ -> pure ()
instance ToTags Rb.Unless where
tags Rb.Unless {condition, consequence, alternative} = do