-
Notifications
You must be signed in to change notification settings - Fork 326
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
Hide java_internal fields of constructors #6900
Comments
Dmitry Bushev reports a new STANDUP for today (2023-06-05): Progress: Started working on the issue. Spent some time fixing failing tests of the PR that adds the context_id to the execution context create request. Started working on excluding internal getters from the suggestions when building the database. It should be finished by 2023-06-07. Next Day: Next day I will be working on the #6900 task. Continue working on the task |
Isn't the usual pattern the following? type Column
Value java_internal Then I believe that single type constructors like the |
Currently, constructors with a single argument are not shown in dropdowns. But they still exist in the suggestions database. |
Dmitry Bushev reports a new STANDUP for today (2023-06-06): Progress: Started working on the issue. Spent some time addressing the review comments of the PR that adds the context_id to the execution context create request and merged that PR. Implemented filtering of the getter suggestions when building the database. Tested in IDE. Created the PR. It should be finished by 2023-06-07. Next Day: Next day I will be working on the #6900 task. Continue working on the task |
Do they? I excluded them out in 0536eeb. The code still seems to be present in (another reincarnation).
After some investigation I wonder what do you mean by not shown? Originally I thought you were saying that they are "filtered out" by the IDE. Are you? Probably not. The logic to filter out single constructors from |
close #6900 This is a follow-up to the discussion of the imports/exports meeting. Right now we have no control over the visibility of atom constructor arguments. One way to hide them is a convention of filtering getters by an `internal` prefix or suffix.
Find a way to hide
java_internal
atom field suggestions in the component browser.The text was updated successfully, but these errors were encountered: