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
Hi! I'm trying to read the information of the IAsyncOperation<TResult> interface, and when I call the following function:
IAsyncOperation<TResult>
methodSig, err := myMethod.Signature.Reader().Method(ctx) // err == nil // methodSig is empty
The methodSig is empty, but there has been no error.
This problem is related to #36. Debugging the code I can see that the method is indeed failing with unexpected element type 0x13:
unexpected element type 0x13
Element type 0x13 is ELEMENT_TYPE_VAR, which according to the docs is "A class variable type modifier".
0x13
ELEMENT_TYPE_VAR
Are there any plans to support this? This may require some changes to the Element struct to add the information related to the generic type.
Element
The text was updated successfully, but these errors were encountered:
I've added ELEMENT_TYPE_VAR and ELEMENT_TYPE_MVAR support in #41 and made v0.1.0 release. Can you check it?
ELEMENT_TYPE_MVAR
v0.1.0
Sorry, something went wrong.
It's working fine now. Thank you!
No branches or pull requests
Hi! I'm trying to read the information of the
IAsyncOperation<TResult>
interface, and when I call the following function:The methodSig is empty, but there has been no error.
This problem is related to #36. Debugging the code I can see that the method is indeed failing with
unexpected element type 0x13
:Element type
0x13
isELEMENT_TYPE_VAR
, which according to the docs is "A class variable type modifier".Are there any plans to support this? This may require some changes to the
Element
struct to add the information related to the generic type.The text was updated successfully, but these errors were encountered: