Complete

WERETECH-12424

Issue has been fixed.

Annoying [bug?]: Variable order changes with every step in Visual Studio Code

When debugging in Visual Studio Code and running the code step-by-step (F10), then the order of the variables is changing randomly on every step.


Parents Comment Children
  • Usually they are sorted in the order they appear, so new variables are added at the end of the list. If it's alphabetical then if you have the following code:

    var c = 1;

    var a = 2;

    then it'll change the order while stepping during debugging.

    But even this would be better than now, then at least it would be stable when not adding new variables...