Skip to content

Commit

Permalink
Fix ideal values for FSharpLexerTest on the frontend
Browse files Browse the repository at this point in the history
  • Loading branch information
misonijnik authored and auduchinok committed Oct 23, 2018
1 parent c932aa7 commit 29330d6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions rider-fsharp/src/test/kotlin/lexer/FSharpLexerTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ class FSharpLexerTest : LexerTestCase() {
|WHITESPACE (' ')
|PP_CONDITIONAL_SYMBOL ('symbol')
|NEW_LINE ('\n')
|PP_IF_SECTION ('#if')
|PP_DIRECTIVE ('#if')
|IDENT ('s')
|WHITESPACE (' ')
|IDENT ('symbol')
Expand Down Expand Up @@ -574,7 +574,7 @@ class FSharpLexerTest : LexerTestCase() {
|NEW_LINE ('\n')
|PP_ELSE_SECTION ('#else')
|NEW_LINE ('\n')
|PP_ELSE_SECTION ('#else')
|PP_DIRECTIVE ('#else')
|PP_CONDITIONAL_SYMBOL ('s')
|WHITESPACE (' ')
|PP_CONDITIONAL_SYMBOL ('symbol')
Expand Down Expand Up @@ -606,7 +606,7 @@ class FSharpLexerTest : LexerTestCase() {
|WHITESPACE (' ')
|PP_CONDITIONAL_SYMBOL ('symbol')
|NEW_LINE ('\n')
|PP_ENDIF ('#endif')
|PP_DIRECTIVE ('#endif')
|PP_CONDITIONAL_SYMBOL ('s')
|WHITESPACE (' ')
|PP_CONDITIONAL_SYMBOL ('symbol')
Expand Down Expand Up @@ -984,7 +984,7 @@ class FSharpLexerTest : LexerTestCase() {
|WHITESPACE (' ')
|COLON (':')
|WHITESPACE (' ')
|PP_IF_SECTION ('#if')
|PP_DIRECTIVE ('#if')
|UNDERSCORE ('_')
""".trimMargin()
)
Expand Down

0 comments on commit 29330d6

Please sign in to comment.