AArch64 | |
ppc64le | |
s390x | |
x86-64 |
- Update to version 0.0.0+git20210225.2e10b26: * Don't disregard operations that occur prior to a variable escaping. * Move library code of the analyzer into pkg/ineffassign * Extra "is this file generated" logic into func * Ignore generated files. * Adjust testdata comments to match what analysistest expects. * Fix testdata compilation errors. * Re-add support for -n flag (and run go fmt) * Use analysis.Analyzer to implement ineffassign * Update "Usage" in README * Deprecate "-n" flag * Add support for ... syntax for recursive analysis * Ignore generated files * Add docs on tool install and usage * Terminate a block upon reaching a return statement. * avoid repeating type assertions by switching on `x := x.(type)` * Account for the pathological case where some clown redfined 'false' * Don't treat initialization to 'false' as assignment. * Packaging use go modules and vendor dependencies * Packaging add obs-service-go_modules disabled * Packaging drop BuildRequires: golang-packaging macros no longer used * Packaging add rpmlintrc
- Use noun phrase in summary.
- enable tar_scm service
- Update to version 0.0.0+git20180909.1003c8b: * Don't treat initialization to zero like `x := int64(0)` as assignment. * Guard against invalid code (break/continue outside of loop). * Definitely don't panic in maybePanic. * Mark named function results as used in operations that may panic. * Don't treat explicit initialization to zero as assignment; it is often used as shorthand for a bare declaration. * Support multiple path arguments on the command line. * Add a note to the README about limitations. * Slicing an array or taking the address of an array element causes the array to escape. * Use control flow analysis to find more useless assignments. * ignore vendor directories
- Initial release