TimestampChecker checks if any source change compared with the generated files, using file modifications timestamps.
| 11 | // TimestampChecker checks if any source change compared with the generated files, |
| 12 | // using file modifications timestamps. |
| 13 | type TimestampChecker struct { |
| 14 | tempDir string |
| 15 | dry bool |
| 16 | } |
| 17 | |
| 18 | func NewTimestampChecker(tempDir string, dry bool) *TimestampChecker { |
| 19 | return &TimestampChecker{ |
nothing calls this directly
no outgoing calls
no test coverage detected