1
1
mirror of https://github.com/github/semantic.git synced 2024-11-24 17:04:47 +03:00

We can use fromMaybe now.

This commit is contained in:
Rob Rix 2018-05-30 13:53:55 -04:00
parent 152ba7f549
commit 36dabb27e6

View File

@ -68,7 +68,7 @@ include pathTerm f = do
name <- subtermValue pathTerm >>= asString
path <- resolvePHPName name
traceResolve name path
(importedEnv, v) <- isolate (f path) >>= maybeM (pure (emptyEnv, unit))
(importedEnv, v) <- fromMaybe (emptyEnv, unit) <$> isolate (f path)
bindAll importedEnv
pure (Rval v)