aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/subsystem/entities.go
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/subsystem/entities.go')
-rw-r--r--pkg/subsystem/entities.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkg/subsystem/entities.go b/pkg/subsystem/entities.go
index 493f2fe67..f7c364299 100644
--- a/pkg/subsystem/entities.go
+++ b/pkg/subsystem/entities.go
@@ -82,3 +82,8 @@ type PathRule struct {
func (pr *PathRule) IsEmpty() bool {
return pr.IncludeRegexp == "" && pr.ExcludeRegexp == ""
}
+
+type DebugInfo struct {
+ ParentChildComment map[*Subsystem]map[*Subsystem]string
+ FileLists map[*Subsystem][]string
+}