mockNote implements lint.Note for testing
| 32 | |
| 33 | // mockNote implements lint.Note for testing |
| 34 | type mockNote struct { |
| 35 | token string |
| 36 | value string |
| 37 | } |
| 38 | |
| 39 | func (n *mockNote) Token() string { return n.token } |
| 40 | func (n *mockNote) Value() string { return n.value } |
nothing calls this directly
no outgoing calls
no test coverage detected