~ubuntu-branches/ubuntu/wily/agda/wily-proposed

« back to all changes in this revision

Viewing changes to src/full/Agda/TypeChecking/Rules/Term.hs-boot

  • Committer: Package Import Robot
  • Author(s): Iain Lane, d5cf60f
  • Date: 2015-05-20 13:08:33 UTC
  • mfrom: (1.1.7)
  • Revision ID: package-import@ubuntu.com-20150520130833-cdcmhagwsouna237
Tags: 2.4.2.2-2
[d5cf60f] Depend on ${shlibs:Depends}, to get libc (& maybe other) deps

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
-- import Agda.Syntax.Common hiding (Arg, Dom, NamedArg)
7
7
import Agda.Syntax.Position
8
8
import Agda.TypeChecking.Monad.Base
9
 
import Control.Monad.Error (ErrorT)
 
9
import Agda.Utils.Except ( ExceptT )
10
10
 
11
11
isType_ :: A.Expr -> TCM Type
12
12
 
13
13
checkExpr :: A.Expr -> Type -> TCM Term
14
14
 
15
15
checkArguments :: ExpandHidden -> ExpandInstances -> Range -> [NamedArg A.Expr] -> Type -> Type ->
16
 
                  ErrorT (Args, [NamedArg A.Expr], Type) TCM (Args, Type)
 
16
                  ExceptT (Args, [NamedArg A.Expr], Type) TCM (Args, Type)
17
17
 
18
18
checkArguments' :: ExpandHidden -> ExpandInstances -> Range -> [NamedArg A.Expr] -> Type -> Type ->
19
19
                   (Args -> Type -> TCM Term) -> TCM Term