mirror of https://github.com/golang/go.git
syscall/js: corrected the wrong method name in error for Value.Length method
This commit is contained in:
parent
261fe25c83
commit
71147fd7a9
|
|
@ -362,7 +362,7 @@ func makeArgs(args []any) ([]Value, []ref) {
|
||||||
// It panics if v is not a JavaScript object.
|
// It panics if v is not a JavaScript object.
|
||||||
func (v Value) Length() int {
|
func (v Value) Length() int {
|
||||||
if vType := v.Type(); !vType.isObject() {
|
if vType := v.Type(); !vType.isObject() {
|
||||||
panic(&ValueError{"Value.SetIndex", vType})
|
panic(&ValueError{"Value.Length", vType})
|
||||||
}
|
}
|
||||||
r := valueLength(v.ref)
|
r := valueLength(v.ref)
|
||||||
runtime.KeepAlive(v)
|
runtime.KeepAlive(v)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue