Static code analysis for VB6 and classic ASP

I am looking for a static code analysis tool that will determine if I have orphaned functions in my VB6 code. The problem I am facing is that we are calling VB6 code from classic asp. Is there a tool that will look at both classic asp and VB6 and determine if there are any orphaned functions?

+3
source share
3 answers

Great Migrations offers a VB6 / COM / ASP processor that can produce exactly what you ask for. These detailed "reference reports" are a side benefit of the main goal of the product, which is to help developers perform a special reinstallation of large VB6 / ASP / COM systems using tools on the C # / ASPX / .NET platform.

It takes a bit of work to configure gmStudio to process the ASP site (i.e. you need to tell which COM libraries are referenced and which site files are being downloaded), but after receiving this information it can accurately indicate which members of the COM libraries actually link (and where and how) the second report can tell you which members are not related (what you call “lost features”).

See the Great Migrations site for more details .

+4

ASP Code Analyzer CodePlex. , - .

0

You can use VBDepend for vb6 ans vba code, a static CQL-based analysis tool, there are some of its fonctionalities:

Compare builds, 60 code metrics, complexity and dependency management

0
source

Source: https://habr.com/ru/post/1738672/


All Articles