2

We have some Microfocus Cobol.Net applications.

We would like to create a dependency map similar to what is available in NDepend.

Does anyone know of a tool that is able to do this?

Shiraz Bhaiji
  • 64,065
  • 34
  • 143
  • 252

2 Answers2

1

Off the shelf, I'd guess the closest you would come is MicroFocus's Revolve tool.

It is intended to let you explore your application interactively, and I think it does metrics. I don't know if it constructs a "static map" you can explore offline. Nor do I believe it has the level of programmability of NDepend.

Ira Baxter
  • 93,541
  • 22
  • 172
  • 341
1

I am not knowledgeable on Cobol .NET but I am a programmer of NDepend. If Cobol .NET emits valid .NET assemblies, then NDepend can analyze them, since NDepend can analyze any .NET assembly.

Patrick from NDepend team
  • 13,237
  • 6
  • 61
  • 92
  • Interesting. Does it produce sensible numbers for F#? – Ira Baxter Jun 23 '12 at 14:59
  • F# compile to IL. There is a lot of work done by the F# compiler to transform the F# functional syntax stuff into the IL OOP-alike stuff. With NDepend you'll get info about this IL OOP-alike stuff. It'll certainly help assess things like code size, complexity, dependency, diff... but not as much as with C# or VB.NET. – Patrick from NDepend team Jun 24 '12 at 10:46
  • Thanks, some info was missing like the Lines of Code, apart from that it worked very well. – Shiraz Bhaiji Jun 25 '12 at 11:29