Changeset 5106 for src/Pugs/Junc.hs

Show
Ignore:
Timestamp:
06/30/05 01:13:08 (4 years ago)
Author:
autrijus
svk:copy_cache_prev:
6965
Message:

* ArgValues? are strict now to keep in sync with other

internal data types (this should have no semantics changes)

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • src/Pugs/Junc.hs

    r3594 r5106  
    197197-} 
    198198data ApplyArg = ApplyArg 
    199     { argName       :: String -- ^ Name of the param that this arg is for 
    200     , argValue      :: Val    -- ^ Actual argument value, which may still be 
    201                               --     a junction 
    202     , argCollapsed  :: Bool   -- ^ @True@ if we have confirmed that this arg 
    203                               --     doesn't need any further autothreading 
     199    { argName       :: !String -- ^ Name of the param that this arg is for 
     200    , argValue      :: !Val     -- ^ Actual argument value, which may still be 
     201                                --     a junction 
     202    , argCollapsed  :: !Bool    -- ^ @True@ if we have confirmed that this arg 
     203                                --     doesn't need any further autothreading 
    204204    } 
    205205    deriving (Show, Eq, Ord)