Add some code comments
parent
b9f038b212
commit
78a32ebece
|
@ -86,13 +86,13 @@ data StreamKind = StdOut | StdErr
|
||||||
deriving (Eq, Show)
|
deriving (Eq, Show)
|
||||||
|
|
||||||
data JoinMode
|
data JoinMode
|
||||||
= JoinYield
|
= JoinYield -- i.e. don't join: We want to yield that exact line
|
||||||
| JoinAll
|
| JoinAll -- join with any other JoinAll-tagged lines/patterns
|
||||||
| JoinSpecific
|
| JoinSpecific -- join with this pattern only
|
||||||
|
|
||||||
data JoinedInfo
|
data JoinedInfo
|
||||||
= JoinedNot
|
= JoinedNot -- Line did not match any pattern
|
||||||
| JoinedYield
|
| JoinedYield -- Line matched a yield pattern, must be forwarded as-is
|
||||||
| JoinedAll Int
|
| JoinedAll Int
|
||||||
| Joined Int String [String] -- pattern, prefix
|
| Joined Int String [String] -- pattern, prefix
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue