Changeset 16414

Show
Ignore:
Timestamp:
05/18/07 00:15:28 (18 months ago)
Author:
audreyt
Message:

* Pugs.AST.Pad: emptyPad is moved into .Internals.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/AST/Pad.hs

    r16379 r16414  
    11{-# OPTIONS_GHC -fglasgow-exts -fparr #-} 
    22module Pugs.AST.Pad ( 
    3   mkPad, diffPads, unionPads, padKeys, filterPad, adjustPad, mergePadEntry, emptyPad, 
     3  mkPad, diffPads, unionPads, padKeys, filterPad, adjustPad, mergePadEntry, 
    44  mergeLexPads, readMPad, writeMPad, appendMPad, modifyMPad, newMPad 
    55) where 
     
    1515    mappend = unionPads 
    1616    mconcat = MkPad . Map.unionsWith mergePadEntry . map padEntries 
    17  
    18 {-| 
    19 An empty Pad with now symbols. 
    20 -} 
    21  
    22 emptyPad :: Pad 
    23 emptyPad = MkPad Map.empty 
    2417 
    2518{-|