class SimpleCharStream extends AnyRef
An implementation of interface CharStream, where the stream is assumed to contain only ASCII characters (without unicode processing).
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- SimpleCharStream
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new SimpleCharStream(dstream: InputStream)
Constructor.
- new SimpleCharStream(dstream: InputStream, encoding: String)
Constructor.
- new SimpleCharStream(dstream: InputStream, startline: Int, startcolumn: Int)
Constructor.
- new SimpleCharStream(dstream: InputStream, encoding: String, startline: Int, startcolumn: Int)
Constructor.
- new SimpleCharStream(dstream: InputStream, startline: Int, startcolumn: Int, buffersize: Int)
Constructor.
- new SimpleCharStream(dstream: InputStream, encoding: String, startline: Int, startcolumn: Int, buffersize: Int)
Constructor.
- new SimpleCharStream(dstream: Reader)
Constructor.
- new SimpleCharStream(dstream: Reader, startline: Int, startcolumn: Int)
Constructor.
- new SimpleCharStream(dstream: Reader, startline: Int, startcolumn: Int, buffersize: Int)
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def BeginToken(): Char
Start.
- def Done(): Unit
Reset buffer when finished.
- def ExpandBuff(wrapAround: Boolean): Unit
- Attributes
- protected[pythonparser]
- def FillBuff(): Unit
- Attributes
- protected[pythonparser]
- def GetImage(): String
Get token literal value.
- def GetSuffix(len: Int): Array[Char]
Get the suffix.
- def ReInit(dstream: InputStream, startline: Int, startcolumn: Int): Unit
Reinitialise.
- def ReInit(dstream: InputStream, encoding: String, startline: Int, startcolumn: Int): Unit
Reinitialise.
- def ReInit(dstream: InputStream): Unit
Reinitialise.
- def ReInit(dstream: InputStream, encoding: String): Unit
Reinitialise.
- def ReInit(dstream: InputStream, startline: Int, startcolumn: Int, buffersize: Int): Unit
Reinitialise.
- def ReInit(dstream: InputStream, encoding: String, startline: Int, startcolumn: Int, buffersize: Int): Unit
Reinitialise.
- def ReInit(dstream: Reader): Unit
Reinitialise.
- def ReInit(dstream: Reader, startline: Int, startcolumn: Int): Unit
Reinitialise.
- def ReInit(dstream: Reader, startline: Int, startcolumn: Int, buffersize: Int): Unit
Reinitialise.
- def UpdateLineColumn(c: Char): Unit
- Attributes
- protected[pythonparser]
- def adjustBeginLineColumn(newLine: Int, newCol: Int): Unit
Method to adjust line and column numbers for the start of a token.
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def backup(amount: Int): Unit
Backup a number of characters.
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def getBeginColumn(): Int
Get token beginning column number.
- def getBeginLine(): Int
Get token beginning line number.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def getEndColumn(): Int
Get token end column number.
- def getEndLine(): Int
Get token end line number.
- def getTabSize(): Int
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def readChar(): Char
Read a character.
- def setTabSize(i: Int): Unit
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])