Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement application statistics analysis step. #7

Open
DavidRFerreira opened this issue Sep 22, 2023 · 0 comments
Open

Implement application statistics analysis step. #7

DavidRFerreira opened this issue Sep 22, 2023 · 0 comments
Assignees
Labels
feature A new feature or enhancement.

Comments

@DavidRFerreira
Copy link
Owner

DavidRFerreira commented Sep 22, 2023

Implement an analysis step that returns different statics for each program in the dataset.
This statistics should also support the requirements for the next analysis steps.
The output should be in the next json format:

{
  "program": "String",
  "totalLinesCount": 0,
  "commentLinesCount": 0,
  "classesCount": 0,
  "interfacesCount": 0,
  "methodsCount": 0,
  "classes": [
    {
      "name": "String",
      "path": "String",
      "methods": [
        {
          "name": "String",
          "path": "String",
          ...
        }
      ],
      "properties": [
        {
          "name": "String",
          "type": "String"
        }
      ]
    }
  ]
}
@DavidRFerreira DavidRFerreira added the feature A new feature or enhancement. label Sep 22, 2023
@DavidRFerreira DavidRFerreira self-assigned this Sep 22, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feature A new feature or enhancement.
Projects
None yet
Development

No branches or pull requests

1 participant