( fileInfo FileInfo, startLine int, startColumn int, endLine int, endColumn int, typeString string, message string, pluginName string, policyName string, )
| 32 | } |
| 33 | |
| 34 | func newFileAnnotation( |
| 35 | fileInfo FileInfo, |
| 36 | startLine int, |
| 37 | startColumn int, |
| 38 | endLine int, |
| 39 | endColumn int, |
| 40 | typeString string, |
| 41 | message string, |
| 42 | pluginName string, |
| 43 | policyName string, |
| 44 | ) *fileAnnotation { |
| 45 | return &fileAnnotation{ |
| 46 | fileInfo: fileInfo, |
| 47 | startLine: startLine, |
| 48 | startColumn: startColumn, |
| 49 | endLine: endLine, |
| 50 | endColumn: endColumn, |
| 51 | typeString: typeString, |
| 52 | message: message, |
| 53 | pluginName: pluginName, |
| 54 | policyName: policyName, |
| 55 | } |
| 56 | } |
| 57 | |
| 58 | func (f *fileAnnotation) FileInfo() FileInfo { |
| 59 | return f.fileInfo |
no outgoing calls
no test coverage detected
searching dependent graphs…