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
One of the MethodDefinitions is never added to the type
References to such method are incorrectly pointing to the the wrong one.
The problem happens when we register the variable used in the generated code to store the reference to the MethodDefinition. For some reason, the parameter types does not include the information that they are nullable
Snippet to reproduce the issue (note in the generated code that there are to MethodDefinitions for M(object?):
classFoo{voidM2(){M(this);}voidM(object?o){}}
The text was updated successfully, but these errors were encountered:
…odDefinitions (#245)
this was happening due a mismatch between the registering of the variable used to store the
MethodDefinition object and the query used to retrieve it back when processing references
to such method.
Snippet to reproduce the issue (note in the generated code that there are to MethodDefinitions for M(object?):
The text was updated successfully, but these errors were encountered: