Skip to content
  • Ömer Sinan Ağacan's avatar
    Remove redundant special case in STG pretty-printer · e56251f6
    Ömer Sinan Ağacan authored and Marge Bot's avatar Marge Bot committed
    This special case existed for no reason, and made things inconsistent.
    
    Before
    
        Boolean.$bT :: Boolean.Boolean
        [GblId, Str=m, Unf=OtherCon []] =
            CAF_ccs  \ u  []  Boolean.$bT1;
    
    After
    
        Boolean.$bF :: Boolean.Boolean
        [GblId, Str=m, Unf=OtherCon []] =
            \u [] Boolean.$bF1;
    
    The cost-centre is now hidden when not profiling, as is the case with
    other types of closures.
    e56251f6