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

Investigate different methods of generating simple names for anonymous entities #6244

Open
rishivijayv opened this issue Mar 27, 2025 · 0 comments

Comments

@rishivijayv
Copy link
Contributor

When processing an anonymous entity (such as an anonymous class), Spoon seems to rely on the following code:

// ... other code
if ((type instanceof CtClass || type instanceof CtInterface)
				&& typeDeclaration.binding != null
				&& (typeDeclaration.binding.isAnonymousType() || typeDeclaration.binding instanceof LocalTypeBinding && typeDeclaration.binding.enclosingMethod() != null)) {
			type.setSimpleName(computeAnonymousName(typeDeclaration.binding.constantPoolName()));
		}
// ... other code

(present here)

This results in a numeric "simple name" being generated and given to the anonymous entity (implementation here but is also present in snippet below).

	static String computeAnonymousName(char[] anonymousQualifiedName) {
		final String poolName = CharOperation.charToString(anonymousQualifiedName);
		return poolName.substring(poolName.lastIndexOf(CtType.INNERTTYPE_SEPARATOR) + 1);
	}

This could result in some issues when we'd like to have simple names that are more representative of the anonymous entities. For instance, using just numeric names for anonymous entities seems to have caused the following issue: SpoonLabs/gumtree-spoon-ast-diff#347 (see the discussion for more).

We can probably improve this anonymous naming convention. One idea could be to use the parent/super-class in generating the simple-name, among others.

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

No branches or pull requests

1 participant