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
We need to handle InstanceFieldRef when "field" is actually a method. For example, obj.callback = this.doAction. Currently, the field resolution fails due to the absence of doAction field among EtsClass::fields, since it is in EtsClass::methods.
We need to handle
InstanceFieldRefwhen "field" is actually a method. For example,obj.callback = this.doAction. Currently, the field resolution fails due to the absence ofdoActionfield amongEtsClass::fields, since it is inEtsClass::methods.