dd931d9b48
Reviewed-on: https://go-review.googlesource.com/136435 gotools/: * Makefile.am (mostlyclean-local): Run chmod on check-go-dir to make sure it is writable. (check-go-tools): Likewise. (check-vet): Copy internal/objabi to check-vet-dir. * Makefile.in: Rebuild. From-SVN: r264546
17 lines
436 B
Go
17 lines
436 B
Go
// Code generated by "stringer -type urlPart"; DO NOT EDIT.
|
|
|
|
package template
|
|
|
|
import "strconv"
|
|
|
|
const _urlPart_name = "urlPartNoneurlPartPreQueryurlPartQueryOrFragurlPartUnknown"
|
|
|
|
var _urlPart_index = [...]uint8{0, 11, 26, 44, 58}
|
|
|
|
func (i urlPart) String() string {
|
|
if i >= urlPart(len(_urlPart_index)-1) {
|
|
return "urlPart(" + strconv.FormatInt(int64(i), 10) + ")"
|
|
}
|
|
return _urlPart_name[_urlPart_index[i]:_urlPart_index[i+1]]
|
|
}
|