-
Notifications
You must be signed in to change notification settings - Fork 8
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
Conversation
(cherry picked from commit be8ae2636d58cccc947fef2ef356ac44357f33ad)
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) |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
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.
There was a problem hiding this 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) |
There was a problem hiding this comment.
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.
Fixed java import resolution. Some additional fixes and improvements.
Following now work again: