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
Currently: we have 2 functions handling on-frame-evaluation:
Resolve, targeting simple expressions that can be resolved talking to the runtime (e.g. local variables, object members, static classes etc)
CompileAndRunTheExpression, targeting more complex expressions using Roslyn. It is triggered only when Resolve fails in evaluating the expression.
Goal:
merge these two processes because some expressions require both sources of information, it could help solving these issues: #66823, #67029, #66824.
The text was updated successfully, but these errors were encountered:
Tagging subscribers to this area: @thaystg
See info in area-owners.md if you want to be subscribed.
Issue Details
Currently: we have 2 functions handling on-frame-evaluation:
Resolve, targeting simple expressions that can be resolved talking to the runtime (e.g. local variables, object members, static classes etc)
CompileAndRunTheExpression, targeting more complex expressions using Roslyn. It is triggered only when Resolve fails in evaluating the expression.
Goal:
merge these two processes because some expressions require both sources of information, it could help solving these issues: #66823, #67029, #66824.
Currently: we have 2 functions handling on-frame-evaluation:
Resolve
, targeting simple expressions that can be resolved talking to the runtime (e.g. local variables, object members, static classes etc)CompileAndRunTheExpression
, targeting more complex expressions using Roslyn. It is triggered only whenResolve
fails in evaluating the expression.Goal:
merge these two processes because some expressions require both sources of information, it could help solving these issues: #66823, #67029, #66824.
The text was updated successfully, but these errors were encountered: