final class ScannerTokens extends AnyRef

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ScannerTokens
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new ScannerTokens(tokens: Tokens)(implicit dialect: Dialect)

Type Members

  1. trait CantStartStat extends AnyRef
  2. trait NonParamsModifier extends AnyRef
  3. trait StatSep extends AnyRef
  4. trait StatSeqEnd extends AnyRef
  5. trait TypeIntro extends AnyRef
  6. implicit class XtensionTokenClass extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from ScannerTokens toany2stringadd[ScannerTokens] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ScannerTokens, B)
    Implicit
    This member is added by an implicit conversion from ScannerTokens toArrowAssoc[ScannerTokens] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def canBeLeadingInfixArg(argToken: Token, argTokenPos: Int): Boolean
  8. def canEndStat(index: Int): Boolean
  9. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  10. def ensuring(cond: (ScannerTokens) => Boolean, msg: => Any): ScannerTokens
    Implicit
    This member is added by an implicit conversion from ScannerTokens toEnsuring[ScannerTokens] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: (ScannerTokens) => Boolean): ScannerTokens
    Implicit
    This member is added by an implicit conversion from ScannerTokens toEnsuring[ScannerTokens] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: Boolean, msg: => Any): ScannerTokens
    Implicit
    This member is added by an implicit conversion from ScannerTokens toEnsuring[ScannerTokens] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean): ScannerTokens
    Implicit
    This member is added by an implicit conversion from ScannerTokens toEnsuring[ScannerTokens] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  16. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  18. final def getNextIndex(index: Int): Int
    Annotations
    @tailrec()
  19. def getNextSafeIndex(index: Int): Int
    Annotations
    @inline()
  20. def getNextToken(index: Int): Token
  21. final def getPrevIndex(index: Int): Int
    Annotations
    @tailrec()
  22. def getPrevSafeIndex(index: Int): Int
    Annotations
    @inline()
  23. def getPrevToken(index: Int): Token
  24. final def getStrictAfterSafe(index: Int): Int
    Annotations
    @tailrec()
  25. def getStrictNext(index: Int): Int
  26. def getTokenAtLineStart(idx: Int): Token
  27. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  28. final def isDclIntro(index: Int): Boolean
    Annotations
    @tailrec()
  29. final def isDefIntro(index: Int): Boolean
    Annotations
    @tailrec()
  30. def isEndMarkerIntro(index: Int): Boolean
  31. def isExprIntro(token: Token, index: => Int): Boolean
  32. def isInlineMatchMod(index: Int): Boolean
    Annotations
    @inline()
  33. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  34. def isKwExtension(index: Int): Boolean
  35. def isModifier(index: Int): Boolean
  36. def isNonlocalModifier(token: Token): Boolean
  37. def isSoftModifier(index: Int): Boolean
  38. final def isTemplateIntro(index: Int): Boolean
    Annotations
    @tailrec()
  39. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  40. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  41. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  42. val soft: SoftKeywords
  43. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  44. def toString(): String
    Definition Classes
    AnyRef → Any
  45. val tokens: Tokens
  46. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  47. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  48. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  49. object CantStartStat
  50. object NonParamsModifier
  51. object StatSep
  52. object StatSeqEnd
  53. object TypeIntro
  54. object Wildcard

Deprecated Value Members

  1. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from ScannerTokens toStringFormat[ScannerTokens] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  2. def [B](y: B): (ScannerTokens, B)
    Implicit
    This member is added by an implicit conversion from ScannerTokens toArrowAssoc[ScannerTokens] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromScannerTokens to any2stringadd[ScannerTokens]

Inherited by implicit conversion StringFormat fromScannerTokens to StringFormat[ScannerTokens]

Inherited by implicit conversion Ensuring fromScannerTokens to Ensuring[ScannerTokens]

Inherited by implicit conversion ArrowAssoc fromScannerTokens to ArrowAssoc[ScannerTokens]

Ungrouped