mirror of
https://gitea.com/gitea/tea.git
synced 2024-11-23 02:51:37 +01:00
6cff3b1cc7
Merge branch 'master' into vendor-migrate-go-git Merge branch 'master' into vendor-migrate-go-git migrate src-d/go-git -> go-git/go-git Co-authored-by: 6543 <6543@obermui.de> Reviewed-on: https://gitea.com/gitea/tea/pulls/128 Reviewed-by: techknowlogick <techknowlogick@gitea.io> Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
18 lines
429 B
Go
18 lines
429 B
Go
// Code generated by "stringer -type=Operation -trimprefix=Diff"; DO NOT EDIT.
|
|
|
|
package diffmatchpatch
|
|
|
|
import "fmt"
|
|
|
|
const _Operation_name = "DeleteEqualInsert"
|
|
|
|
var _Operation_index = [...]uint8{0, 6, 11, 17}
|
|
|
|
func (i Operation) String() string {
|
|
i -= -1
|
|
if i < 0 || i >= Operation(len(_Operation_index)-1) {
|
|
return fmt.Sprintf("Operation(%d)", i+-1)
|
|
}
|
|
return _Operation_name[_Operation_index[i]:_Operation_index[i+1]]
|
|
}
|