scala.tools.nsc.ast.parser.Scanners

ParensAnalyzer

class ParensAnalyzer extends UnitScanner

Source
Scanners.scala
Linear Supertypes
Type Hierarchy Learn more about scaladoc diagrams
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. ParensAnalyzer
  2. UnitScanner
  3. SourceFileScanner
  4. Scanner
  5. ScannerCommon
  6. ScannerData
  7. TokenData
  8. CommonTokenData
  9. CharArrayReader
  10. CharArrayReaderData
  11. AnyRef
  12. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Instance Constructors

  1. new ParensAnalyzer(unit: Global.CompilationUnit, patches: List[BracePatch])

Type Members

  1. class CharArrayLookaheadReader extends CharArrayReader

    Definition Classes
    CharArrayReader

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 information
    This member is added by an implicit conversion from ParensAnalyzer to any2stringadd[ParensAnalyzer] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (ParensAnalyzer, B)

    Implicit information
    This member is added by an implicit conversion from ParensAnalyzer to ArrowAssoc[ParensAnalyzer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  6. def applyBracePatch(): Boolean

    Insert or delete a brace, if a patch exists for this offset

    Insert or delete a brace, if a patch exists for this offset

    Definition Classes
    UnitScannerScanner
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. val balance: Map[Int, Int]

  9. var base: Int

    the base of a number

    the base of a number

    Definition Classes
    TokenData
  10. val bracePairs: List[BracePair]

    The list of matching top-level brace pairs (each of which may contain nested brace pairs).

  11. val buf: Array[Char]

    Definition Classes
    SourceFileScannerCharArrayReader
  12. val cbuf: collection.mutable.StringBuilder

    A character buffer for literals

    A character buffer for literals

    Definition Classes
    Scanner
  13. var ch: Char

    the last read character

    the last read character

    Definition Classes
    CharArrayReaderData
  14. def charLitOr(op: () ⇒ Unit): Unit

    Parse character literal if current character is followed by \', or follow with given op and return a symbol literal token

    Parse character literal if current character is followed by \', or follow with given op and return a symbol literal token

    Definition Classes
    Scanner
  15. var charOffset: Int

    The offset one past the last read character

    The offset one past the last read character

    Definition Classes
    CharArrayReaderData
  16. def charVal: Char

    Convert current strVal to char value

    Convert current strVal to char value

    Definition Classes
    Scanner
  17. def checkNoLetter(): Unit

    Definition Classes
    Scanner
  18. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. def column(offset: Scanners.Offset): Int

  20. def copyFrom(sd: ScannerData): ParensAnalyzer.this.type

    Definition Classes
    ScannerData
  21. def copyFrom(td: TokenData): ParensAnalyzer.this.type

    Definition Classes
    TokenData
  22. def copyFrom(cd: CharArrayReaderData): ParensAnalyzer.this.type

    Definition Classes
    CharArrayReaderData
  23. val decodeUni: Boolean

    Definition Classes
    SourceFileScannerCharArrayReader
  24. def deleteRBrace(): List[BracePatch]

  25. def deprecationWarning(off: Scanners.Offset, msg: String): Unit

    Definition Classes
    UnitScannerSourceFileScannerScannerCommon
  26. def deprecationWarning(msg: String): Unit

    Definition Classes
    Scanner
  27. def discardDocBuffer(): Unit

    To prevent doc comments attached to expressions from leaking out of scope onto the next documentable entity, they are discarded upon passing a right brace, bracket, or parenthesis.

    To prevent doc comments attached to expressions from leaking out of scope onto the next documentable entity, they are discarded upon passing a right brace, bracket, or parenthesis.

    Definition Classes
    Scanner
  28. def emitIdentifierDeprecationWarnings: Boolean

    Determines whether this scanner should emit identifier deprecation warnings, e.g.

    Determines whether this scanner should emit identifier deprecation warnings, e.g. when seeing macro or then, which are planned to become keywords in future versions of Scala.

    Definition Classes
    ParensAnalyzerScanner
  29. def ensuring(cond: (ParensAnalyzer) ⇒ Boolean, msg: ⇒ Any): ParensAnalyzer

    Implicit information
    This member is added by an implicit conversion from ParensAnalyzer to Ensuring[ParensAnalyzer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  30. def ensuring(cond: (ParensAnalyzer) ⇒ Boolean): ParensAnalyzer

    Implicit information
    This member is added by an implicit conversion from ParensAnalyzer to Ensuring[ParensAnalyzer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  31. def ensuring(cond: Boolean, msg: ⇒ Any): ParensAnalyzer

    Implicit information
    This member is added by an implicit conversion from ParensAnalyzer to Ensuring[ParensAnalyzer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  32. def ensuring(cond: Boolean): ParensAnalyzer

    Implicit information
    This member is added by an implicit conversion from ParensAnalyzer to Ensuring[ParensAnalyzer] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  33. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  34. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  35. def error(offset: Scanners.Offset, msg: String): Unit

    An error routine to call on bad unicode escapes \\uxxxx.

    An error routine to call on bad unicode escapes \\uxxxx.

    Definition Classes
    ParensAnalyzerUnitScannerSourceFileScannerScannerCommonCharArrayReader
  36. final def fetchToken(): Unit

    read next token, filling TokenData fields of Scanner.

    read next token, filling TokenData fields of Scanner.

    Attributes
    protected
    Definition Classes
    Scanner
  37. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  38. def floatVal: Double

    Definition Classes
    Scanner
  39. def floatVal(negated: Boolean): Double

    Convert current strVal, base to double value

    Convert current strVal, base to double value

    Definition Classes
    Scanner
  40. def flushDoc(): Global.DocComment

    Definition Classes
    Scanner
  41. def formatted(fmtstr: String): String

    Implicit information
    This member is added by an implicit conversion from ParensAnalyzer to StringFormat[ParensAnalyzer] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  42. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  43. def getFraction(): Unit

    read fractional part and exponent of floating point number if one is present.

    read fractional part and exponent of floating point number if one is present.

    Attributes
    protected
    Definition Classes
    Scanner
  44. def getLitChar(): Unit

    copy current character into cbuf, interpreting any escape sequences, and advance to next character.

    copy current character into cbuf, interpreting any escape sequences, and advance to next character.

    Attributes
    protected
    Definition Classes
    Scanner
  45. def getNumber(): Unit

    Read a number into strVal and set base

    Read a number into strVal and set base

    Attributes
    protected
    Definition Classes
    Scanner
  46. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  47. def healBraces(): List[BracePatch]

    overridden in UnitScanners

    overridden in UnitScanners

    Definition Classes
    UnitScannerScanner
  48. def inFirstOfStat(token: Scanners.Token): Boolean

    Can token start a statement?

    Can token start a statement?

    Definition Classes
    Scanner
  49. def inLastOfStat(token: Scanners.Token): Boolean

    Can token end a statement?

    Can token end a statement?

    Definition Classes
    Scanner
  50. def incompleteInputError(off: Scanners.Offset, msg: String): Unit

    Definition Classes
    UnitScannerSourceFileScannerScannerCommon
  51. def incompleteInputError(msg: String): Unit

    signal an error where the input ended in the middle of a token

    signal an error where the input ended in the middle of a token

    Definition Classes
    Scanner
  52. def init(): Unit

    Initialization method: read first char, then first token

    Initialization method: read first char, then first token

    Definition Classes
    Scanner
  53. def insertPatch(patches: List[BracePatch], patch: BracePatch): List[BracePatch]

  54. def insertRBrace(): List[BracePatch]

  55. def intVal: Long

    Definition Classes
    Scanner
  56. def intVal(negated: Boolean): Long

    Convert current strVal, base to long value This is tricky because of max negative value.

    Convert current strVal, base to long value This is tricky because of max negative value.

    Definition Classes
    Scanner
  57. def invalidEscape(): Unit

    Attributes
    protected
    Definition Classes
    Scanner
  58. def isAtEnd: Boolean

    Definition Classes
    Scanner
  59. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  60. def isUnicodeEscape: Boolean

    Is last character a unicode escape \\uxxxx?

    Is last character a unicode escape \\uxxxx?

    Definition Classes
    CharArrayReader
  61. var lastLineStartOffset: Int

    The start offset of the line before the current one

    The start offset of the line before the current one

    Definition Classes
    CharArrayReaderData
  62. var lastOffset: Scanners.Offset

    the offset of the character following the token preceding this one

    the offset of the character following the token preceding this one

    Definition Classes
    TokenData
  63. var lastUnicodeOffset: Int

    Attributes
    protected
    Definition Classes
    CharArrayReaderData
  64. def line(offset: Scanners.Offset): Int

  65. val lineStart: ArrayBuffer[Int]

    The offset of the first token on this line, or next following line if blank

  66. var lineStartOffset: Int

    The start offset of the current line

    The start offset of the current line

    Definition Classes
    CharArrayReaderData
  67. def lookaheadReader: CharArrayLookaheadReader

    A new reader that takes off at the current character position

    A new reader that takes off at the current character position

    Definition Classes
    CharArrayReader
  68. var name: Global.TermName

    the name of an identifier

    the name of an identifier

    Definition Classes
    TokenDataCommonTokenData
  69. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  70. val next: TokenData

    we need one token lookahead and one token history

    we need one token lookahead and one token history

    Definition Classes
    ScannerData
  71. final def nextChar(): Unit

    Advance one character; reducing CR;LF pairs to just LF

    Advance one character; reducing CR;LF pairs to just LF

    Definition Classes
    CharArrayReader
  72. final def nextRawChar(): Unit

    Advance one character, leaving CR;LF pairs intact.

    Advance one character, leaving CR;LF pairs intact. This is for use in multi-line strings, so there are no "potential line ends" here.

    Definition Classes
    CharArrayReader
  73. def nextToken(): Unit

    Produce next token, filling TokenData fields of Scanner.

    Produce next token, filling TokenData fields of Scanner.

    Definition Classes
    Scanner
  74. def nextTokenAllow(name: Global.Name): Unit

    Get next token, and allow the otherwise deprecated ident name

    Get next token, and allow the otherwise deprecated ident name

    Definition Classes
    Scanner
  75. final def notify(): Unit

    Definition Classes
    AnyRef
  76. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  77. var offset: Scanners.Offset

    the offset of the first character of the current token

    the offset of the first character of the current token

    Definition Classes
    TokenData
  78. def parenBalance(token: Scanners.Token): Int

    overridden in UnitScanners

    overridden in UnitScanners

    Definition Classes
    UnitScannerScanner
  79. lazy val parensAnalyzer: ParensAnalyzer

    Definition Classes
    UnitScanner
  80. val prev: TokenData

    Definition Classes
    ScannerData
  81. def putChar(c: Char): Unit

    append Unicode character to "cbuf" buffer

    append Unicode character to "cbuf" buffer

    Attributes
    protected
    Definition Classes
    Scanner
  82. def putCommentChar(): Unit

    Attributes
    protected
    Definition Classes
    Scanner
  83. def resume(lastCode: Scanners.Token): Unit

    Definition Classes
    Scanner
  84. var sepRegions: List[Scanners.Token]

    a stack of tokens which indicates whether line-ends can be statement separators also used for keeping track of nesting levels.

    a stack of tokens which indicates whether line-ends can be statement separators also used for keeping track of nesting levels. We keep track of the closing symbol of a region. This can be RPAREN if region starts with '(' RBRACKET if region starts with '[' RBRACE if region starts with '{' ARROW if region starts with case' STRINGLIT if region is a string interpolation expression starting with '${' (the STRINGLIT appears twice in succession on the stack iff the expression is a multiline string literal).

    Definition Classes
    Scanner
  85. def skipBlockComment(): Unit

    Definition Classes
    Scanner
  86. def skipComment(): Boolean

    Definition Classes
    Scanner
  87. def skipDocComment(): Unit

    Definition Classes
    Scanner
  88. final def skipNestedComments(): Unit

    Definition Classes
    Scanner
    Annotations
    @tailrec()
  89. def skipToken(): Scanners.Offset

    read next token and return last offset

    read next token and return last offset

    Definition Classes
    Scanner
  90. val source: SourceFile

    Definition Classes
    SourceFileScanner
  91. var strVal: String

    the string value of a literal

    the string value of a literal

    Definition Classes
    TokenData
  92. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  93. def syntaxError(msg: String): Unit

    generate an error at the current token offset

    generate an error at the current token offset

    Definition Classes
    Scanner
  94. def syntaxError(off: Scanners.Offset, msg: String): Unit

    generate an error at the given offset

    generate an error at the given offset

    Definition Classes
    Scanner
  95. var tabSeen: Boolean

  96. def toString(): String

    Definition Classes
    Scanner → AnyRef → Any
  97. var token: Scanners.Token

    the next token

    the next token

    Definition Classes
    TokenDataCommonTokenData
  98. val unit: Global.CompilationUnit

    Definition Classes
    UnitScanner
  99. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  100. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  101. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  102. def [B](y: B): (ParensAnalyzer, B)

    Implicit information
    This member is added by an implicit conversion from ParensAnalyzer to ArrowAssoc[ParensAnalyzer] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from UnitScanner

Inherited from SourceFileScanner

Inherited from Scanner

Inherited from Scanners.ScannerCommon

Inherited from ScannerData

Inherited from TokenData

Inherited from Scanners.CommonTokenData

Inherited from CharArrayReader

Inherited from CharArrayReaderData

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from ParensAnalyzer to any2stringadd[ParensAnalyzer]

Inherited by implicit conversion StringFormat from ParensAnalyzer to StringFormat[ParensAnalyzer]

Inherited by implicit conversion Ensuring from ParensAnalyzer to Ensuring[ParensAnalyzer]

Inherited by implicit conversion ArrowAssoc from ParensAnalyzer to ArrowAssoc[ParensAnalyzer]

Ungrouped