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

Issue #14019 kill mutation for ScopeUtil #16546

Closed

Conversation

@Abdelrhmansersawy Abdelrhmansersawy force-pushed the killMutation branch 4 times, most recently from b9fbdac to f4d37cb Compare March 12, 2025 22:26
Copy link
Member

@romani romani left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Item

}
else if (token.getType() == TokenTypes.LITERAL_NEW
token != null; token = token.getParent()) {
if (TokenUtil.isOfType(token, TokenTypes.LITERAL_NEW, tokenType)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You changed until method .
Please put wording in description of PR on why is it safe to do code changes.

Please identify all affected Checks by this update, what modules use this function.
We need to run diff regression report.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please share list of modules and I will instruct on further steps.

Copy link
Contributor Author

@Abdelrhmansersawy Abdelrhmansersawy Mar 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Affected Modules:
The isInBlockOf() method is used in the following places:

  1. ScopeUtil.java
  2. CyclomaticComplexityCheck.java

Could you please confirm if I understood your question correctly, or let me know if there's anything else I should check?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It would help me if you share screenshot from IDE on "hierarchy of calls" with expanded nodes up to XxxxCheck

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Here's
image

Copy link
Contributor Author

@Abdelrhmansersawy Abdelrhmansersawy Mar 13, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@romani
The approach I used is based on a previous commit in this PR.

Previously, the code used this pattern:

if (type == TokenTypes.METHOD_DEF
        || type == TokenTypes.CTOR_DEF
        || type == TokenTypes.INSTANCE_INIT
        || type == TokenTypes.STATIC_INIT
        || type == TokenTypes.LAMBDA) {

In the current version, it has been updated to:

if (TokenUtil.isOfType(token, TokenTypes.METHOD_DEF,
        TokenTypes.CTOR_DEF, TokenTypes.INSTANCE_INIT,
        TokenTypes.STATIC_INIT, TokenTypes.LAMBDA)) {

I believe using the TokenUtil.isOfType method is safer and aligns with the existing code style.

Additionally, a similar modification was made in another accepted commit:
69ebc814c00d6b6764c5462b546f3d2a214ec35d

Also, there is an closed issue that suggests converting such patterns to this style:
Issue #8048: Enforce usage of TokenUtil.isOfType method

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In hierarchy of calls please expand all to let see whole tree

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I expanded nodes up to XxxxCheck, is it enough or you need more?

image

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please take from that tree all modules/Checks. We need to do diff testing on them individually.
Please share textual list of Checks.

@Abdelrhmansersawy
Copy link
Contributor Author

@romani
I have just added list of affected modules/checks, Could you review it?

@romani
Copy link
Member

romani commented Mar 23, 2025

List of all affected modules

This is just a list of packages of modules.
I need list of Checks.

@Abdelrhmansersawy
Copy link
Contributor Author

@romani
Here's list of all affected check.

CyclomaticComplexityCheck (com.puppycrawl.tools.checkstyle.checks.metrics)
AbstractFileSetCheck (com.puppycrawl.tools.checkstyle.api)
AbstractAccessControlNameCheck (com.puppycrawl.tools.checkstyle.checks.naming)
AbstractNameCheck (com.puppycrawl.tools.checkstyle.checks.naming)
LambdaParameterNameCheck (com.puppycrawl.tools.checkstyle.checks.naming)
MethodNameCheck (com.puppycrawl.tools.checkstyle.checks.naming)
ConstantNameCheck (com.puppycrawl.tools.checkstyle.checks.naming)
MemberNameCheck (com.puppycrawl.tools.checkstyle.checks.naming)
StaticVariableNameCheck (com.puppycrawl.tools.checkstyle.checks.naming)
ParameterNameCheck (com.puppycrawl.tools.checkstyle.checks.naming)
RecordComponentNumberCheck (com.puppycrawl.tools.checkstyle.checks.sizes)
UnusedLocalVariableCheck (com.puppycrawl.tools.checkstyle.checks.coding)
DesignForExtensionCheck (com.puppycrawl.tools.checkstyle.checks.design)
ExplicitInitializationCheck (com.puppycrawl.tools.checkstyle.checks.coding)
HiddenFieldCheck (com.puppycrawl.tools.checkstyle.checks.coding)
MagicNumberCheck (com.puppycrawl.tools.checkstyle.checks.coding)
AbstractSuperCheck (com.puppycrawl.tools.checkstyle.checks.coding)
CheckUtil (com.puppycrawl.tools.checkstyle.utils)
JavadocMethodCheck (com.puppycrawl.tools.checkstyle.checks.javadoc)
JavadocVariableCheck (com.puppycrawl.tools.checkstyle.checks.javadoc)
JavadocStyleCheck (com.puppycrawl.tools.checkstyle.checks.javadoc)
MissingOverrideCheck (com.puppycrawl.tools.checkstyle.checks.annotation)
MethodCountCheck (com.puppycrawl.tools.checkstyle.checks.sizes)
MissingJavadocMethodCheck (com.puppycrawl.tools.checkstyle.checks.javadoc)
MissingJavadocTypeCheck (com.puppycrawl.tools.checkstyle.checks.javadoc)
RequireThisCheck (com.puppycrawl.tools.checkstyle.checks.coding)
ClassMemberImpliedModifierCheck (com.puppycrawl.tools.checkstyle.checks.modifier)
DeclarationOrderCheck (com.puppycrawl.tools.checkstyle.checks.coding)
VisibilityModifierCheck (com.puppycrawl.tools.checkstyle.checks.design)
InterfaceMemberImpliedModifierCheck (com.puppycrawl.tools.checkstyle.checks.modifier)
FinalClassCheck (com.puppycrawl.tools.checkstyle.checks.design)

Copy link
Contributor

Report generation failed on phase "make_report",
step "Download files".
Link: https://github.com/checkstyle/checkstyle/actions/runs/14015166501

Copy link
Contributor

Report generation failed on phase "make_report",
step "Download files".
Link: https://github.com/checkstyle/checkstyle/actions/runs/14015167529

@Abdelrhmansersawy
Copy link
Contributor Author

Github, generate report

Copy link
Contributor

Report generation failed on phase "make_report",
step "set upstream".
Link: https://github.com/checkstyle/checkstyle/actions/runs/14015263694

@Abdelrhmansersawy
Copy link
Contributor Author

Github, generate report

Copy link
Contributor

Report generation failed on phase "make_report",
step "set upstream".
Link: https://github.com/checkstyle/checkstyle/actions/runs/14015299753

@Abdelrhmansersawy
Copy link
Contributor Author

Github, generate report

Copy link
Contributor

Report generation failed on phase "make_report",
step "set upstream".
Link: https://github.com/checkstyle/checkstyle/actions/runs/14015399597

@Abdelrhmansersawy
Copy link
Contributor Author

Github, generate report

Copy link
Contributor

Report generation failed on phase "make_report",
step "Generate report".
Link: https://github.com/checkstyle/checkstyle/actions/runs/14015473415

@Abdelrhmansersawy
Copy link
Contributor Author

Github, generate report

Copy link
Contributor

Report generation failed on phase "make_report",
step "Generate report".
Link: https://github.com/checkstyle/checkstyle/actions/runs/14015543307

@Abdelrhmansersawy
Copy link
Contributor Author

Github, generate report

Copy link
Contributor

Report generation failed on phase "make_report",
step "Generate report".
Link: https://github.com/checkstyle/checkstyle/actions/runs/14015592346

@Abdelrhmansersawy
Copy link
Contributor Author

Github, generate report

Copy link
Contributor

Report generation failed on phase "make_report",
step "Generate report".
Link: https://github.com/checkstyle/checkstyle/actions/runs/14015621752

@Abdelrhmansersawy
Copy link
Contributor Author

Github, generate report

@romani
Copy link
Member

romani commented Mar 23, 2025

As you see there are bunch of changes.
So you need to copy some of such code to our Inputs and mutation will be killed. Maybe not a single java code snippet should be copied to inputs, pay attention what Check is used to raise this violation.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants