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
However, by reformulating the paramerizable aexpr to a call with that exact parameter we get:
trigger(aexpr(()=>this.expression(instance)))
Can our chosen implementation strategy handle this case?
This should be true for ticking and rewriting, but not for interpretation, if the this.expression refers to locally scoped variables, as this.expression is now not called directly in the interpreter anymore! (which it was before, so it could handle this scenario due to the explicitly provided local scope object)
The text was updated successfully, but these errors were encountered:
From the paper, we originally had:
However, by reformulating the paramerizable aexpr to a call with that exact parameter we get:
Can our chosen implementation strategy handle this case?
This should be true for ticking and rewriting, but not for interpretation, if the
this.expression
refers to locally scoped variables, asthis.expression
is now not called directly in the interpreter anymore! (which it was before, so it could handle this scenario due to the explicitly provided local scope object)The text was updated successfully, but these errors were encountered: