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
I've thought this tool is amazing, It always has helped me to resolve a lot of conflict that I've had during my projects. But I consider it has a big limitation. prophet doesn't able to debug the variable with scope local as "Let" Is there some posibility to include this feature as soon as posible.
For Example in my actual project I want to see the value located into this variable called "cardsTokenList" but When i try to write it in the debuug console it throws an error "cardsTokenList" is not defined or it isn't locate in the variable stack or when I pass the mosue over the variable it doesn't display the value. Please see the image.
I consider that add this improvement it would give to the tool a better experience with the users.
Regards.
The text was updated successfully, but these errors were encountered:
on example cardsTokenList should be visible only after execution flow passes place where it's defined, since let has no lexical scope like var. It has block scope visibility. cardsTokenList doesn't exists until it's created in row 382. Also it will not be visible after execution flow leaves block where it's defined.
Nothing with extension here... that's how JavaScript is working
Thanks for your anwser, you're right respect to the cardsTokenList variable it was my mistake the image is wrong.
I know about your point respect of the variable definition.
But, now my question is. Could I see the variable when all the function be executed in this case in another controller or what another place exactly? maybe after the next() function? See the image
Hi.
I've thought this tool is amazing, It always has helped me to resolve a lot of conflict that I've had during my projects. But I consider it has a big limitation. prophet doesn't able to debug the variable with scope local as "Let" Is there some posibility to include this feature as soon as posible.
For Example in my actual project I want to see the value located into this variable called "cardsTokenList" but When i try to write it in the debuug console it throws an error "cardsTokenList" is not defined or it isn't locate in the variable stack or when I pass the mosue over the variable it doesn't display the value. Please see the image.
I consider that add this improvement it would give to the tool a better experience with the users.
Regards.
The text was updated successfully, but these errors were encountered: