This field is only used by commands t and T to store the index position for the lastest s command found. The idea is to track where was the related s that t will test the status.
But in practice it does not work in all cases, since due to GOTO commands such as b or t, the script flow can change, and the previous s in the original code could not be the latest s executed when the code is running.
Since only in runtime this information can be reliable, it's better to remove it from sedsed.
Currently, this information was currently only shown in --token output.
This field is only used by commands
t
andT
to store the index position for the lastests
command found. The idea is to track where was the relateds
thatt
will test the status.But in practice it does not work in all cases, since due to GOTO commands such as
b
ort
, the script flow can change, and the previouss
in the original code could not be the latests
executed when the code is running.Since only in runtime this information can be reliable, it's better to remove it from sedsed.
Currently, this information was currently only shown in
--token
output.