<div dir="ltr">Hi Ralph,<div><br></div><div>You should be able to trace that using references.  If you used a mutator just do senders of the mutator.</div><div><br></div><div>so ivar foo</div><div><br></div><div>might have an accessor </div><div><br></div><div>MyClass >> foo </div><div>   "return the value of foo"</div><div>   ^foo</div><div><br></div><div>and a mutator</div><div><br></div><div>MyClass >> foo: aFoo</div><div>   "set the value of foo to aFoo"</div><div>   foo := aFoo</div><div><br></div><div>if you only used the mutator to set the value of foo then senders of foo: will give you what you are looking for.</div><div><br></div><div>if no use references.  By the way, if you did things this way references will show your accessor and mutator, which is why I said you should be able to trace it (by doing senders of what is returned by references.</div><div><br></div><div>All the best,</div><div><br></div><div>Ron Teitelbaum</div><div><br></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Jul 23, 2018 at 7:14 PM, Ralph Boland <span dir="ltr"><<a href="mailto:rpboland@gmail.com" target="_blank">rpboland@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">In squeak you can find out all references to a variable of a class<br>
by clicking on the vars button.<br>
<br>
Is there a way to find only the references to a variable of a class<br>
that assigns a value to that variable?<br>
<span class="HOEnZb"><font color="#888888"><br>
Ralph Boland<br>
______________________________<wbr>_________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@lists.squeakfoundation.org">Beginners@lists.<wbr>squeakfoundation.org</a><br>
<a href="http://lists.squeakfoundation.org/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://lists.squeakfoundation.<wbr>org/mailman/listinfo/beginners</a><br>
</font></span></blockquote></div><br></div></div>