mirror of
https://github.com/github/semantic.git
synced 2024-12-27 00:44:57 +03:00
Fix an ambiguous variable.
This commit is contained in:
parent
bb6d3e027f
commit
f837076616
@ -160,7 +160,7 @@ concreteAnalysis = Analysis{..}
|
|||||||
addr ... n = do
|
addr ... n = do
|
||||||
val <- deref addr
|
val <- deref addr
|
||||||
heap <- get
|
heap <- get
|
||||||
pure (val >>= lookupConcrete heap n)
|
pure (val >>= lookupConcrete (heap :: Heap term name) n)
|
||||||
|
|
||||||
|
|
||||||
lookupConcrete :: (IsString name, Ord name) => Heap term name -> name -> Concrete term name -> Maybe Precise
|
lookupConcrete :: (IsString name, Ord name) => Heap term name -> name -> Concrete term name -> Maybe Precise
|
||||||
|
Loading…
Reference in New Issue
Block a user