J'ai le code suivant dans specman :
var x := some.very.long.path.to.a.variable.in.another.struct;
while (x == some_value) {
//do something that uses x;
//wait for something
//get a new value for x
x = some.very.long.path.to.a.variable.in.another.struct;
};
Maintenant, il semble inutile d'écrire la mission pour x
deux fois ; une fois pendant l'initialisation et une fois pendant la boucle.
Ce que je veux vraiment utiliser est une référence au nom de la variable longue, de sorte que je pourrais faire :
var x := reference to some.very.long.path.to.a.variable.in.another.struct;
while (x == some_value) {
//do something that uses x;
//wait for something
//no need to update x now since it's a reference
};
Cela peut-il être fait dans specman ?