What code analysis tools are available for Rebol ? As an example: Given several pages of code wherein a series has been 'addressed' with many different pointers (or should I say new series have been defined from an original series) via 'traversing' functions: series1: [ "item1" "item2" ..... "itemN" ] .... .... series2: next series1 .... .... series3: skip series2 2 .... ....etc It would be nice to apply a function to this code as text, and get a list of the dependencies so that I could know the ramifications of using any 'modifying' functions on any one of these linked series. Don
