blob: bd51d946f63fc7fea9ebb8c2e03554e6914f0678 (
plain)
1
2
3
4
5
6
7
8
|
package lcontext
// LContext stands for line context and is here to help filtering out only specific lines.
type LContext struct {
AfterContext int
BeforeContext int
MaxCount int
}
|