From fdd5b2fbeb2c128cb9e0d9f2e29d8ececa46f97b Mon Sep 17 00:00:00 2001 From: Thomas Schilling Date: Wed, 26 Nov 2008 13:43:44 +0000 Subject: [PATCH] Documentation only: Add module description for HscMain. --- compiler/main/HscMain.lhs | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/compiler/main/HscMain.lhs b/compiler/main/HscMain.lhs index fee24c6..6aeaea2 100644 --- a/compiler/main/HscMain.lhs +++ b/compiler/main/HscMain.lhs @@ -1,10 +1,13 @@ % % (c) The GRASP/AQUA Project, Glasgow University, 1993-2000 % - -\section[GHC_Main]{Main driver for Glasgow Haskell compiler} - \begin{code} +-- | Main driver for the compiling plain Haskell source code. +-- +-- This module implements compilation of a Haskell-only source file. It is +-- /not/ concerned with preprocessing of source files; this is handled in +-- "DriverPipeline". +-- module HscMain ( newHscEnv, hscCmmFile , hscParseIdentifier -- 1.7.10.4