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 6 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// ${CHAR:Enter}
module Module

/// x{caret}
let x = 5
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// ${CHAR:Enter}
module Module

/// x
/// {caret}
let x = 5
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// ${CHAR:Enter}
module Module =

/// x{caret}
let x = 5
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// ${CHAR:Enter}
module Module =

/// x
/// {caret}
let x = 5
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// ${CHAR:Enter}
module Module

/// x {caret}
let x = 5
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// ${CHAR:Enter}
module Module

/// x
/// {caret}
let x = 5
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
// ${CHAR:Enter}
module Module

/// x {caret} y
let x = 5
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// ${CHAR:Enter}
module Module

/// x
/// {caret}y
let x = 5
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ type FSharpTypingAssistTest() =
[<Test>] member x.``Enter - After comment - Line start 05``() = x.DoNamedTest()
[<Test>] member x.``Enter - After comment - Line start 06``() = x.DoNamedTest()
[<Test>] member x.``Enter - After comment - Line start 07``() = x.DoNamedTest()
[<Test>] member x.``Enter - After comment - Documentation 01``() = x.DoNamedTest()
[<Test>] member x.``Enter - After comment - Documentation 02``() = x.DoNamedTest()
[<Test>] member x.``Enter - After comment - Documentation 03 - Spaces``() = x.DoNamedTest()

[<Test>] member x.``Enter - Continue line - String 01``() = x.DoNamedTest()
[<Test>] member x.``Enter - Continue line - String 02``() = x.DoNamedTest()
Expand Down Expand Up @@ -176,6 +179,7 @@ type FSharpTypingAssistTest() =
[<Test>] member x.``Enter in comment 01``() = x.DoNamedTest()
[<Test>] member x.``Enter in comment 02``() = x.DoNamedTest()
[<Test>] member x.``Enter in comment 03``() = x.DoNamedTest()
[<Test>] member x.``Enter in comment 04 - Documentation 01``() = x.DoNamedTest()

[<Test>] member x.``Enter in string 01 - Inside empty triple-quoted string``() = x.DoNamedTest()
[<Test>] member x.``Enter in string 02 - Inside triple-quoted string``() = x.DoNamedTest()
Expand Down
7 changes: 7 additions & 0 deletions rider-fsharp/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,9 @@ artifacts {
}

tasks {
instrumentTestCode {
enabled = false
}
instrumentCode {
enabled = false
}
Expand Down Expand Up @@ -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

}
useTestNG {
groupByInstances = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -450,6 +450,34 @@ public interface FSharpTokenType {
DECIMAL
);

TokenSet LEFT_BRACES = TokenSet.create(
LPAREN,
LBRACE,
LBRACK,
LQUOTE_UNTYPED,
LBRACK_BAR,
LBRACK_LESS,
LQUOTE_TYPED,
LBRACE_BAR
);

TokenSet RIGHT_BRACES = TokenSet.create(
RPAREN,
RBRACE,
RBRACK,
RQUOTE_UNTYPED,
BAR_RBRACK,
RQUOTE_TYPED,
GREATER_RBRACK,
BAR_RBRACE
);

TokenSet INTERPOLATED_STRING_ENDINGS = TokenSet.create(
FSharpTokenType.REGULAR_INTERPOLATED_STRING_END,
FSharpTokenType.VERBATIM_INTERPOLATED_STRING_END,
FSharpTokenType.TRIPLE_QUOTE_INTERPOLATED_STRING_END
);

static @NotNull FSharpTokenNodeType createToken(@NotNull String value) {
return new FSharpTokenNodeType(value);
}
Expand Down
Loading
Loading