You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I was working with reflect.SliceHeader of TinyGo, I found that the type of SliceHeader.{Len,Cap} is uintptr and is different from the one of Go's official implementation which is int:
When I was working with reflect.SliceHeader of TinyGo, I found that the type of
SliceHeader.{Len,Cap}
isuintptr
and is different from the one of Go's official implementation which isint
:tinygo/src/reflect/value.go
Lines 695 to 696 in 720a54a
is this intentional? If not, may I fix this and replace
uintptr
withint
?motivation: If possible, I do not want to have separated files for Go (for testing) and Tinygo (for building) of virtually identical files
The text was updated successfully, but these errors were encountered: