mirror of
https://github.com/golang/go
synced 2024-11-21 21:34:40 -07:00
reflect: fix panic strings
use ':' instead of ';' to keep consistency with the other panic strings R=golang-dev, dsymonds, r CC=golang-dev https://golang.org/cl/5666048
This commit is contained in:
parent
d6a3650ad7
commit
cc8e12bb52
@ -561,7 +561,7 @@ func (t *commonType) Elem() Type {
|
|||||||
tt := (*sliceType)(unsafe.Pointer(t))
|
tt := (*sliceType)(unsafe.Pointer(t))
|
||||||
return toType(tt.elem)
|
return toType(tt.elem)
|
||||||
}
|
}
|
||||||
panic("reflect; Elem of invalid type")
|
panic("reflect: Elem of invalid type")
|
||||||
}
|
}
|
||||||
|
|
||||||
func (t *commonType) Field(i int) StructField {
|
func (t *commonType) Field(i int) StructField {
|
||||||
@ -630,7 +630,7 @@ func (t *commonType) NumField() int {
|
|||||||
|
|
||||||
func (t *commonType) NumIn() int {
|
func (t *commonType) NumIn() int {
|
||||||
if t.Kind() != Func {
|
if t.Kind() != Func {
|
||||||
panic("reflect; NumIn of non-func type")
|
panic("reflect: NumIn of non-func type")
|
||||||
}
|
}
|
||||||
tt := (*funcType)(unsafe.Pointer(t))
|
tt := (*funcType)(unsafe.Pointer(t))
|
||||||
return len(tt.in)
|
return len(tt.in)
|
||||||
@ -638,7 +638,7 @@ func (t *commonType) NumIn() int {
|
|||||||
|
|
||||||
func (t *commonType) NumOut() int {
|
func (t *commonType) NumOut() int {
|
||||||
if t.Kind() != Func {
|
if t.Kind() != Func {
|
||||||
panic("reflect; NumOut of non-func type")
|
panic("reflect: NumOut of non-func type")
|
||||||
}
|
}
|
||||||
tt := (*funcType)(unsafe.Pointer(t))
|
tt := (*funcType)(unsafe.Pointer(t))
|
||||||
return len(tt.out)
|
return len(tt.out)
|
||||||
|
Loading…
Reference in New Issue
Block a user