-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa0a35b
commit 2a90dab
Showing
5 changed files
with
31 additions
and
3 deletions.
There are no files selected for viewing
5 changes: 5 additions & 0 deletions
5
mtags/src/main/scala-3.3.1/scala/meta/internal/pc/Compat.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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
package scala.meta.internal.pc | ||
|
||
import dotty.tools.dotc.CompilationUnit | ||
import dotty.tools.dotc.core.Comments.Comment | ||
|
||
object Compat: | ||
val EvidenceParamName = dotty.tools.dotc.core.NameKinds.EvidenceParamName | ||
extension (unit: CompilationUnit) | ||
def getComments(): List[Comment] = Nil |
5 changes: 5 additions & 0 deletions
5
mtags/src/main/scala-3.3.2/scala/meta/internal/pc/Compat.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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
package scala.meta.internal.pc | ||
|
||
import dotty.tools.dotc.CompilationUnit | ||
import dotty.tools.dotc.core.Comments.Comment | ||
|
||
object Compat: | ||
val EvidenceParamName = dotty.tools.dotc.core.NameKinds.ContextBoundParamName | ||
extension (unit: CompilationUnit) | ||
def getComments(): List[Comment] = unit.comments |
5 changes: 5 additions & 0 deletions
5
mtags/src/main/scala-3.3.3/scala/meta/internal/pc/Compat.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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
package scala.meta.internal.pc | ||
|
||
import dotty.tools.dotc.CompilationUnit | ||
import dotty.tools.dotc.core.Comments.Comment | ||
|
||
object Compat: | ||
val EvidenceParamName = dotty.tools.dotc.core.NameKinds.ContextBoundParamName | ||
extension (unit: CompilationUnit) | ||
def getComments(): List[Comment] = unit.comments |
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