1
1
mirror of https://github.com/github/semantic.git synced 2024-11-28 10:15:55 +03:00

Section headings.

This commit is contained in:
Rob Rix 2019-11-04 12:27:24 -05:00
parent ab5b566bcb
commit 250237024e
No known key found for this signature in database
GPG Key ID: F188A01508EA1CF7
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,7 @@
{-# LANGUAGE DeriveFunctor, ExistentialQuantification, FlexibleContexts, LambdaCase, StandaloneDeriving #-}
module Analysis.Effect.Env
( alloc
( -- * Env effect
alloc
, bind
, lookupEnv
, Env(..)

View File

@ -1,6 +1,7 @@
{-# LANGUAGE DeriveFunctor, DeriveGeneric, FlexibleContexts #-}
module Analysis.Effect.Heap
( deref
( -- * Heap effect
deref
, assign
, Heap(..)
) where