-
Notifications
You must be signed in to change notification settings - Fork 338
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bugfix: rename end marker for lolac definitions
- Loading branch information
1 parent
213e575
commit f46ca8c
Showing
14 changed files
with
134 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package example | ||
|
||
object EndMarker: | ||
def foo = | ||
1 | ||
end foo |
6 changes: 6 additions & 0 deletions
6
tests/unit/src/test/resources/definition-scala3/example/EndMarker.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package example | ||
|
||
object EndMarker/*EndMarker.scala*/: | ||
def foo/*EndMarker.scala*/ = | ||
1 | ||
end/*<no symbol>*/ foo/*EndMarker.scala*/ |
6 changes: 6 additions & 0 deletions
6
tests/unit/src/test/resources/documentSymbol-scala3/example/EndMarker.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
/*example(Package):6*/package example | ||
|
||
/*example.EndMarker(Module):6*/object EndMarker: | ||
/*example.EndMarker.foo(Method):5*/def foo = | ||
1 | ||
end foo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 6 additions & 0 deletions
6
tests/unit/src/test/resources/mtags-scala3/example/EndMarker.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package example | ||
|
||
object EndMarker/*example.EndMarker.*/: | ||
def foo/*example.EndMarker.foo().*/ = | ||
1 | ||
end foo |
6 changes: 6 additions & 0 deletions
6
tests/unit/src/test/resources/semanticTokens3/example/EndMarker.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<<package>>/*keyword*/ <<example>>/*namespace*/ | ||
|
||
<<object>>/*keyword*/ <<EndMarker>>/*class*/: | ||
<<def>>/*keyword*/ <<foo>>/*method,definition*/ = | ||
<<1>>/*number*/ | ||
<<end>>/*keyword*/ <<foo>>/*method,definition*/ |
6 changes: 6 additions & 0 deletions
6
tests/unit/src/test/resources/semanticdb-scala3/example/EndMarker.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package example | ||
|
||
object EndMarker/*example.EndMarker.*/: | ||
def foo/*example.EndMarker.foo().*/ = | ||
1 | ||
end foo/*example.EndMarker.foo().*/ |
6 changes: 6 additions & 0 deletions
6
tests/unit/src/test/resources/toplevel-with-inner-scala3/example/EndMarker.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
package example | ||
|
||
object EndMarker/*example.EndMarker.*/: | ||
def foo = | ||
1 | ||
end foo |