Rodrigo Mesquita pushed to branch wip/romes/step-out-5 at Glasgow Haskell Compiler / GHC

Commits:

1 changed file:

Changes:

  • compiler/GHC/Runtime/Eval/Types.hs
    ... ... @@ -105,7 +105,7 @@ from which step-out was initiated. A trivial example is a case expression:
    105 105
     
    
    106 106
       f x = case <brk>g x of ...
    
    107 107
     
    
    108
    -If we're stopped in <brk>, the continuation will be case alternatives rather
    
    108
    +If we're stopped in <brk>, the continuation will be in the case alternatives rather
    
    109 109
     than in the function which called `f`. This is especially relevant for monadic
    
    110 110
     do-blocks which may end up being compiled to long chains of case expressions,
    
    111 111
     such as IO, and we don't want to stop at every line in the block while stepping out!