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

Frontend/Typing Assists: initital support for 'Enter' in sync with backend #829

Open
wants to merge 5 commits into
base: main
Choose a base branch
from

Conversation

DedSec256
Copy link
Collaborator

No description provided.

@DedSec256 DedSec256 force-pushed the ber.a/frontendTypingAssist branch from f9943a8 to 82f4e8d Compare March 25, 2025 14:32
@DedSec256 DedSec256 force-pushed the ber.a/frontendTypingAssist branch from dae6bc1 to 3b625d2 Compare March 31, 2025 17:10
@DedSec256 DedSec256 requested a review from auduchinok March 31, 2025 23:49
)

override fun isApplicable(testCase: String) =
testCase.startsWith("Enter")
Copy link
Member

Choose a reason for hiding this comment

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

Is this check actually required? Can we check tests instead, like in isSupported?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

Test cases use the ReSharper typing assist specifying format, which the IntelliJ IDEA infrastructure does not understand. In this PR, I am currently using the hardcoded IdeActions.Enter action. It's possible to write separate logic that would retrieve the comment specifying the key press/action from the file and convert it to the IntelliJ IDEA format; this would eliminate the need to check isApplicable. But it hasn't been done yet.

Comment on lines +88 to +89
abstract fun isApplicable(sourceFile: String): Boolean
abstract fun isSupported(sourceFile: String): Boolean
Copy link
Member

Choose a reason for hiding this comment

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

Why do we need two methods here?

Copy link
Collaborator Author

Choose a reason for hiding this comment

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

The idea is to use the first method to select from all tests those intended for our scenario (for example, Enter).
The second method allows grouping available tests into those that are supported and those that are not.
Those that are not supported will fail if they begin to be supported.

val HighlighterIterator.tokenTypeSafe: IElementType?
get() = if (this.atEnd()) null else this.tokenType

// TODO: Move to the platform
Copy link
Member

Choose a reason for hiding this comment

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

Why not do it right away? Isn't there anything like this already?

Copy link
Collaborator Author

@DedSec256 DedSec256 Apr 1, 2025

Choose a reason for hiding this comment

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

This exists within the C++ frontend implementation and is not in the common code. It needs to be generalized because there are some API differences and moved to a common module. I'm working on this, and one day this code will be removed from the plugin.

Comment on lines +375 to +376
require(currTokenText.length >= minimumCommentLength)
{ "Expected either a doc comment or non-empty line comment" }
Copy link
Member

Choose a reason for hiding this comment

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

Shouldn't it be something like this? I'm not sure about Kotlin style guides.

Suggested change
require(currTokenText.length >= minimumCommentLength)
{ "Expected either a doc comment or non-empty line comment" }
require(currTokenText.length >= minimumCommentLength) {
"Expected either a doc comment or non-empty line comment"
}

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'm a simple man -- I press Reformat code -> it formats. I'll check again.

@@ -262,6 +265,10 @@ tasks {

named<Test>("test") {
dependsOn(parserTest)
classpath -= classpath.filter {
(it.name.startsWith("localization-") && it.name.endsWith(".jar")) // TODO[#478]: https://youtrack.jetbrains.com/issue/IJPL-178084/External-plugin-tests-break-due-to-localization-issues
|| it.name == "cwm-plugin.jar" // TODO[#479]: Check after 251 EAP5 release
Copy link
Member

Choose a reason for hiding this comment

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

Could you check it please? 🙂

Copy link
Collaborator Author

@DedSec256 DedSec256 Apr 1, 2025

Choose a reason for hiding this comment

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

It fixed just recently, yes.
ForNeVeR/AvaloniaRider@eac36a3

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