org.nlogo.api

TokenizerInterface

trait TokenizerInterface extends AnyRef

Source
TokenizerInterface.scala
Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Hide All
  2. Show all
  1. TokenizerInterface
  2. AnyRef
  3. Any
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def checkInstructionMaps(): Unit

  2. abstract def getTokenAtPosition(source: String, position: Int): Token

  3. abstract def isValidIdentifier(ident: String): Boolean

  4. abstract def nextToken(reader: BufferedReader): Token

  5. abstract def tokenize(source: String, fileName: String): Seq[Token]

  6. abstract def tokenize(source: String): Seq[Token]

  7. abstract def tokenizeAllowingRemovedPrims(source: String): Seq[Token]

  8. abstract def tokenizeForColorization(source: String, extensionManager: ExtensionManager): Array[Token]

  9. abstract def tokenizeForColorization(source: String): Array[Token]

  10. abstract def tokenizeRobustly(source: String): Seq[Token]