definition: |
oneGroup :: Tokens -> Width -> Position -> EndPosition -> OutGroupPrefix -> Out oneGroup EOD _ _ _ _ = error "Pretty.oneGroup: EOD" -- should not occur: oneGroup (Empty ts) w p e outGrpPre = oneGroup ts w p e outGrpPre oneGroup (Text s ts) w p e outGrpPre = pruneOne ts w (p + l) e (\h cont -> outGrpPre h (outText cont)) where l = lengthVis s outText cont r ms fs = s ++ cont (r - l) ms fs oneGroup (LineBreak Nothing ts) w p _ outGrpPre = outGrpPre False (outLine (noGroup ts w p)) where outLine _ _ [] _ = error "Pretty.oneGroup.outLine: empty margins" outLine cont _ ms@(m:_) fs = '\n' : addSpaces m ts ++ cont (w - m) ms fs oneGroup (LineBreak (Just s) ts) w p e outGrpPre = pruneOne ts w (p + l) e (\h cont -> outGrpPre h (outLine h cont)) where l = lengthVis s outLine _ _ _ [] _ = error "Pretty.oneGroup.outLine: empty margins" outLine h cont r ms@(m:_) fs = if h then s ++ cont (r - l) ms fs else '\n' : addSpaces m ts ++ cont (w - m) ms fs oneGroup (OpenGroup ts) w p e outGrpPre = multiGroup ts w p e outGrpPre Q.empty p (\_ cont -> cont) oneGroup (CloseGroup ts) w p e outGrpPre = outGrpPre (p <= e) (noGroup ts w p) oneGroup (OpenNest n ts) w p e outGrpPre = oneGroup ts w p e (\h cont -> outGrpPre h (\r ms fs -> cont r (applyNesting n w r ms) fs)) oneGroup (CloseNest ts) w p e outGrpPre = oneGroup ts w p e (\h cont -> outGrpPre h (\r ms fs -> cont r (unApplyNesting ms) fs)) oneGroup (OpenFormat f ts) w p e outGrpPre = oneGroup ts w p e (\h cont -> outGrpPre h (outFormat cont)) where outFormat cont r ms fs = applyFormat f ++ cont r ms (f:fs) oneGroup (CloseFormat ts) w p e outGrpPre = oneGroup ts w p e (\h cont -> outGrpPre h (outUnformat cont)) where outUnformat cont r ms fs = applyFormat f ++ cont r ms ofs where (f, ofs) = resetFormat fs |
demand: |
argument 1 |
deterministic: |
deterministic operation |
documentation: |
-- oneGroup is used when there is one deferred group -- Whenever the tokens `Text` or `LineBreak` are processed, -- i.e. the current position is increased, -- pruneOne checks whether whether the group still fits the line -- Furthermore the `group output function` is extended with the current token |
failfree: |
(_, _, _, _, _) |
indeterministic: |
referentially transparent operation |
infix: |
no fixity defined |
iotype: |
{({Empty},_,_,_,_) |-> _ || ({Text},_,_,_,_) |-> _ || ({LineBreak},_,_,_,_) |-> _ || ({OpenGroup},_,_,_,_) |-> _ || ({CloseGroup},_,_,_,_) |-> _ || ({OpenNest},_,_,_,_) |-> _ || ({CloseNest},_,_,_,_) |-> _ || ({OpenFormat},_,_,_,_) |-> _ || ({CloseFormat},_,_,_,_) |-> _} |
name: |
oneGroup |
precedence: |
no precedence defined |
result-values: |
_ |
signature: |
Tokens -> Prelude.Int -> Prelude.Int -> Prelude.Int -> (Prelude.Bool -> (Prelude.Int -> [Prelude.Int] -> [FormatStm] -> String) -> Prelude.Int -> [Prelude.Int] -> [FormatStm] -> String) -> Prelude.Int -> [Prelude.Int] -> [FormatStm] -> String |
solution-complete: |
operation might suspend on free variables |
terminating: |
possibly non-terminating |
totally-defined: |
possibly non-reducible on same data term |