Changeset 17047 for src/Pugs/AST/Pad.hs

Show
Ignore:
Timestamp:
07/14/07 04:45:22 (17 months ago)
Author:
audreyt
Message:

* Final batch of HPC-inspired toplevel removals:

Pugs.AST.Pads.diffPads
Pugs.AST.Utils.getMapIndex
Pugs.Internals.ID.hashList

(moved to a local definition in Pugs.Parser.Charnames)

Pugs.Lexer.balanced
Pugs.Lexer.ruleWhiteSpaceLine (and ruleEndOfLine)

Files:
1 modified

Legend:

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

    r16414 r17047  
    11{-# OPTIONS_GHC -fglasgow-exts -fparr #-} 
    22module Pugs.AST.Pad ( 
    3   mkPad, diffPads, unionPads, padKeys, filterPad, adjustPad, mergePadEntry, 
     3  mkPad, unionPads, padKeys, filterPad, adjustPad, mergePadEntry, 
    44  mergeLexPads, readMPad, writeMPad, appendMPad, modifyMPad, newMPad 
    55) where 
     
    5151    return $ MkMPad (addressOf tvar) tvar 
    5252 
     53{- 
    5354{-| 
    5455Return the difference between two 'Pad's. 
     
    6263    diffPadEntry x y | x == y    = Nothing 
    6364                     | otherwise = Just x 
     65-} 
    6466 
    6567{-|