Skip to content

Commit

Permalink
Merge pull request #2055 from scalacenter/scala3-mods
Browse files Browse the repository at this point in the history
expose Scala 3 modifiers
  • Loading branch information
bjaglin authored Aug 26, 2024
2 parents a93135d + fc2a88a commit cb55947
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions scalafix-core/src/main/scala/scalafix/v1/SymbolInformation.scala
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,24 @@ final class SymbolInformation private[scalafix] (
/** @group property */
@property def isDefault: Boolean = info.isDefault

/** @group property */
@property def isGiven: Boolean = info.isGiven

/** @group property */
@property def isInline: Boolean = info.isInline

/** @group property */
@property def isOpen: Boolean = info.isOpen

/** @group property */
@property def isTransparent: Boolean = info.isTransparent

/** @group property */
@property def isInfix: Boolean = info.isInfix

/** @group property */
@property def isOpaque: Boolean = info.isOpaque

/** @group access */
@access def isPrivate: Boolean = info.isPrivate

Expand Down

0 comments on commit cb55947

Please sign in to comment.