Show
Ignore:
Timestamp:
09/06/05 14:11:41 (3 years ago)
Author:
autrijus
Message:

* massive retab for src/, expanding all tabs into spaces,

except for the generated PIL1.hs.

Files:
1 modified

Legend:

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

    r6672 r6793  
    702702instance Show VJunc where 
    703703    show (MkJunc jtype _ set) = 
    704         (show jtype) ++ "(" ++ 
    705             (foldl (\x y -> 
    706                 if x == "" then show y 
    707                 else x ++ "," ++ show y) 
    708             "" $ Set.elems set) ++ ")" 
     704        (show jtype) ++ "(" ++ 
     705            (foldl (\x y -> 
     706                if x == "" then show y 
     707                else x ++ "," ++ show y) 
     708            "" $ Set.elems set) ++ ")" 
    709709 
    710710{-| 
     
    10991099 
    11001100lookupPad key (MkPad map) = case Map.lookup (possiblyFixOperatorName key) map of 
    1101         Just xs -> Just [tvar | (_, tvar) <- xs] 
    1102         Nothing -> Nothing 
     1101        Just xs -> Just [tvar | (_, tvar) <- xs] 
     1102        Nothing -> Nothing 
    11031103 
    11041104{-| 
     
    16541654        , rxGlobal    :: !Bool  -- ^ Flag indicating \'global\' (match-all) 
    16551655        , rxNumSubs   :: !Int   -- ^ The number of subpatterns present. 
    1656             , rxStringify :: !Bool 
     1656            , rxStringify :: !Bool 
    16571657        , rxRuleStr   :: !String -- ^ The rule string, for user reference. 
    16581658        , rxAdverbs   :: !Val 
     
    16621662        { rxRule      :: !String -- ^ The rule string 
    16631663        , rxGlobal    :: !Bool   -- ^ Flag indicating \'global\' (match-all) 
    1664             , rxStringify :: !Bool 
     1664            , rxStringify :: !Bool 
    16651665        , rxAdverbs   :: !Val 
    16661666        }