We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, thanks for your amazing work on tinygo!
I am facing an issue accessing IsExported method from the reflect package
IsExported
package main import ( "reflect" ) func main() { if reflect.TypeOf(0).Method(0).IsExported() { println("IsExported exists") } }
tinygo build .
To compile and build
Error:
main.go:8:33: reflect.TypeOf(0).Method(0).IsExported undefined (type reflect.Method has no field or method IsExported)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello, thanks for your amazing work on tinygo!
I am facing an issue accessing
IsExported
method from the reflect packageMinimal steps to reproduce:
tinygo build .
Expected result
To compile and build
Actual result
Error:
The text was updated successfully, but these errors were encountered: