AccessPatternFact records which fields of tracked structs are accessed by a function/method
| 29 | |
| 30 | // AccessPatternFact records which fields of tracked structs are accessed by a function/method |
| 31 | type AccessPatternFact struct { |
| 32 | // Map from struct type name to set of field names accessed |
| 33 | Accesses map[string]map[string]bool |
| 34 | } |
| 35 | |
| 36 | func (f *AccessPatternFact) AFact() {} |
| 37 |
nothing calls this directly
no outgoing calls
no test coverage detected