scala.tools.nsc.ast.parser.Scanners

ParensAnalyzer

class ParensAnalyzer extends UnitScanner

Source
Scanners.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. ParensAnalyzer
  2. UnitScanner
  3. SourceFileScanner
  4. Scanner
  5. ScannerCommon
  6. TokenData
  7. CommonTokenData
  8. CharArrayReader
  9. AnyRef
  10. Any
Visibility
  1. Public
  2. All

Instance Constructors

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

Type Members

  1. class CharArrayLookaheadReader extends CharArrayReader

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    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. var 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. def buildDocs: Boolean

    Should doc comments be built?

    Should doc comments be built?

    Definition Classes
    Scanner
  13. val cbuf: StringBuilder

    A character buffer for literals

    A character buffer for literals

    Definition Classes
    Scanner
  14. var ch: Char

    the last read character

    the last read character

    Definition Classes
    CharArrayReader
  15. 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
  16. var charOffset: Int

    The offset one past the last read character

    The offset one past the last read character

    Definition Classes
    CharArrayReader
  17. def charVal: Char

    Convert current strVal to char value

    Convert current strVal to char value

    Definition Classes
    Scanner
  18. def checkNoLetter(): Unit

    Definition Classes
    Scanner
  19. def clone(): AnyRef

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  20. def column(offset: Int): Int

  21. def copyFrom(td: TokenData): Unit

    Definition Classes
    TokenData
  22. val decodeUni: Boolean

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

  24. var docBuffer: StringBuilder

    buffer for the documentation comment

    buffer for the documentation comment

    Definition Classes
    Scanner
  25. var docPos: Position

    Definition Classes
    Scanner
  26. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  28. var errOffset: Offset

    the last error offset

    the last error offset

    Definition Classes
    Scanner
  29. def error(offset: Int, 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
  30. 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
  31. def finalize(): Unit

    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  32. def floatVal: Double

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

    Convert current strVal, base to double value

    Convert current strVal, base to double value

    Definition Classes
    Scanner
  34. def flush: Scanner

    Definition Classes
    Scanner
  35. def flushDoc: DocComment

    Return current docBuffer and set docBuffer to null

    Return current docBuffer and set docBuffer to null

    Definition Classes
    Scanner
  36. def foundComment(value: String, start: Int, end: Int): Unit

    Definition Classes
    UnitScannerScanner
  37. def foundDocComment(value: String, start: Int, end: Int): Unit

    Definition Classes
    UnitScannerScanner
  38. final def getClass(): java.lang.Class[_]

    Definition Classes
    AnyRef → Any
  39. 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
  40. def getLitChar(): Unit

    read next character in character or string literal:

    read next character in character or string literal:

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

    Read a number into strVal and set base

    Read a number into strVal and set base

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

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

    overridden in UnitScanners

    overridden in UnitScanners

    Definition Classes
    UnitScannerScanner
  44. def imbalanceMeasure: Int

  45. def improves(patches1: List[BracePatch]): Boolean

  46. def inFirstOfStat(token: Int): Boolean

    Can token start a statement?

    Can token start a statement?

    Definition Classes
    Scanner
  47. def inLastOfStat(token: Int): Boolean

    Can token end a statement?

    Can token end a statement?

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

    Definition Classes
    UnitScannerSourceFileScannerScannerCommon
  49. 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
  50. def init(): Unit

    Initialization method: read first char, then first token

    Initialization method: read first char, then first token

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

  52. def insertRBrace(): List[BracePatch]

  53. def intVal: Long

    Definition Classes
    Scanner
  54. 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
  55. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  56. def isUnicodeEscape: Boolean

    Is last character a unicode escape \\uxxxx?

    Is last character a unicode escape \\uxxxx?

    Definition Classes
    CharArrayReader
  57. 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
    CharArrayReader
  58. var lastOffset: 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
  59. def leftColumn(offset: Int): Int

  60. def line(offset: Int): Int

  61. val lineStart: ArrayBuffer[Int]

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

  62. var lineStartOffset: Int

    The start offset of the current line

    The start offset of the current line

    Definition Classes
    CharArrayReader
  63. 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
  64. var name: TermName

    the name of an identifier

    the name of an identifier

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

    Definition Classes
    AnyRef
  66. val next: TokenData

    we need one token lookahead and one token history

    we need one token lookahead and one token history

    Definition Classes
    Scanner
  67. 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
  68. 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
  69. def nextToken(): Unit

    Produce next token, filling TokenData fields of Scanner.

    Produce next token, filling TokenData fields of Scanner.

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

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

    Definition Classes
    AnyRef
  72. var offset: Offset

    the offset of the first character of the current token

    the offset of the first character of the current token

    Definition Classes
    TokenData
  73. def parenBalance(token: Int): Int

    overridden in UnitScanners

    overridden in UnitScanners

    Definition Classes
    UnitScannerScanner
  74. lazy val parensAnalyzer: ParensAnalyzer

    Definition Classes
    UnitScanner
  75. val prev: TokenData

    Definition Classes
    Scanner
  76. def putChar(c: Char): Unit

    append Unicode character to "cbuf" buffer

    append Unicode character to "cbuf" buffer

    Attributes
    protected
    Definition Classes
    Scanner
  77. def putDocChar(c: Char): Unit

    add the given character to the documentation buffer

    add the given character to the documentation buffer

    Attributes
    protected
    Definition Classes
    Scanner
  78. def resume(lastCode: Int): Unit

    Definition Classes
    Scanner
  79. def rightColumn(offset: Int, default: Int): Int

  80. var sepRegions: List[Int]

    a stack of tokens which indicates whether line-ends can be statement separators

    a stack of tokens which indicates whether line-ends can be statement separators

    Definition Classes
    Scanner
  81. def skipToken(): Offset

    read next token and return last offset

    read next token and return last offset

    Definition Classes
    Scanner
  82. val source: SourceFile

    Definition Classes
    SourceFileScanner
  83. var strVal: String

    the string value of a literal

    the string value of a literal

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

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

    generate an error at the current token offset

    generate an error at the current token offset

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

    generate an error at the given offset

    generate an error at the given offset

    Definition Classes
    Scanner
  87. var tabSeen: Boolean

  88. def toString(): String

    Definition Classes
    Scanner → AnyRef → Any
  89. var token: Int

    the next token

    the next token

    Definition Classes
    TokenDataCommonTokenData
  90. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  93. def warning(off: Offset, msg: String): Unit

    Definition Classes
    UnitScannerSourceFileScannerScannerCommon

Inherited from UnitScanner

Inherited from SourceFileScanner

Inherited from Scanner

Inherited from ScannerCommon

Inherited from TokenData

Inherited from CommonTokenData

Inherited from CharArrayReader

Inherited from AnyRef

Inherited from Any