(target, src snapshot.SourceInfo)
| 104 | } |
| 105 | |
| 106 | func definitionPointToString(target, src snapshot.SourceInfo) string { |
| 107 | if src == target { |
| 108 | return "(defined for this target)" |
| 109 | } |
| 110 | |
| 111 | return "inherited from " + src.String() |
| 112 | } |
| 113 | |
| 114 | func printPolicy(out *textOutput, p *policy.Policy, def *policy.Definition) { |
| 115 | var rows []policyTableRow |
no test coverage detected