Re: [go-nuts] compiler RFE

2020-06-22 Thread Andrew Archibald
Is there an existing tool that can generate a DOT digraph of a program's call graph? Andrew -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [go-nuts] compiler RFE

2020-06-19 Thread Jon Perryman
Compiler cross references were needed when editor's were used. Today, we have IDE's (Interactive Development Environments). Several are available, each with their pro's and con's. I currently use VSCODE but each has features I like and dislike. Most IDE's allow you to select a variable in a

Re: [go-nuts] compiler RFE

2020-06-17 Thread Ian Lance Taylor
On Wed, Jun 17, 2020 at 12:16 PM wrote: > > I remember using mainframe FORTRAN compilers where the compiler would print > out a page of symbol cross references. > > For each symbol or function there would listed the line where it was defined > and then line numbers where it was used/referenced.

[go-nuts] compiler RFE

2020-06-17 Thread hardconnect . joe
I remember using mainframe FORTRAN compilers where the compiler would print out a page of symbol cross references. For each symbol or function there would listed the line where it was defined and then line numbers where it was used/referenced. Something similar would be useful for GO. Printing