~ubuntu-branches/ubuntu/raring/agda/raring-proposed

« back to all changes in this revision

Viewing changes to src/full/Agda/Interaction/Imports.hs-boot

  • Committer: Bazaar Package Importer
  • Author(s): Iain Lane
  • Date: 2009-07-20 19:49:41 UTC
  • Revision ID: james.westby@ubuntu.com-20090720194941-hcjy91vrn16csh7d
Tags: upstream-2.2.4+dfsg
ImportĀ upstreamĀ versionĀ 2.2.4+dfsg

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
module Agda.Interaction.Imports where
 
3
 
 
4
import Agda.Syntax.Abstract.Name    ( ModuleName )
 
5
import Agda.Syntax.Scope.Base       ( Scope )
 
6
import Agda.TypeChecking.Monad.Base ( TCM )
 
7
import Data.Map                     ( Map )
 
8
 
 
9
scopeCheckImport :: ModuleName -> TCM (ModuleName, Map ModuleName Scope)
 
10