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

Java imports resolution failure #249

Merged
merged 3 commits into from
Mar 26, 2025
Merged

Java imports resolution failure #249

merged 3 commits into from
Mar 26, 2025

Conversation

dhuebner
Copy link
Collaborator

Fixed java import resolution. Some additional fixes and improvements.

Following now work again:

use java.util.HashMap
hm! = new HashMap()
hm!.put("JKH","HJ")

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
(cherry picked from commit be8ae2636d58cccc947fef2ef356ac44357f33ad)

Verified

This commit was created on github.com and signed with GitHub’s verified signature.
@dhuebner dhuebner requested a review from Lotes March 13, 2025 12:01
const relativeFilePath = match[1];
return this.getBBjClassesFromFile(context.container, relativeFilePath, false);
} else {
const program = AstUtils.getContainerOfType(context.container, isProgram)!;
const document = AstUtils.getDocument(program);
const locals = this.indexManager.allElements(BbjClass, new Set([document.uri.toString()]));
const locals = document.precomputedScopes?.get(program)
Copy link
Collaborator

@Lotes Lotes Mar 14, 2025

Choose a reason for hiding this comment

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

This seems to be the actual fix, I excluded all classes other than the BBj classes by accident.

Question: Is there a way to include these classes also in the completion of the USE statements?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

They are currently available in use completion, or what do you mean?
Bildschirmfoto 2025-03-14 um 12 49 55

Copy link
Collaborator

Choose a reason for hiding this comment

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

Not for me. HashSet and LinkedList are two examples that are not in the Completion list:
Bildschirmfoto 2025-03-14 um 15 15 31

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

I see HashMap, but LinkedList is missing. Strange...
We could investigate next week if there is still time. It is low Prio cause only completion related, linking works for both types.
Bildschirmfoto 2025-03-14 um 15 53 53

Copy link
Collaborator

@insafuhrmann insafuhrmann Mar 26, 2025

Choose a reason for hiding this comment

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

Agreed, the completion aspect can be resolved later in that case.

Copy link
Collaborator

@insafuhrmann insafuhrmann left a comment

Choose a reason for hiding this comment

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

Thanks @dhuebner! Looks good to me.

const relativeFilePath = match[1];
return this.getBBjClassesFromFile(context.container, relativeFilePath, false);
} else {
const program = AstUtils.getContainerOfType(context.container, isProgram)!;
const document = AstUtils.getDocument(program);
const locals = this.indexManager.allElements(BbjClass, new Set([document.uri.toString()]));
const locals = document.precomputedScopes?.get(program)
Copy link
Collaborator

@insafuhrmann insafuhrmann Mar 26, 2025

Choose a reason for hiding this comment

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

Agreed, the completion aspect can be resolved later in that case.

@dhuebner dhuebner merged commit 10f4ef4 into main Mar 26, 2025
1 check passed
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.

None yet

3 participants