silex
This package is used to write lexers.
=Lexer=
To define a lexer, mix-in the silex.Lexers trait.
object MyLexer extends Lexers {
// Type of characters consumed.
type Character = Char
// Type of positions.
type Position = MyPosition
// Type of tokens produced.
type Token = MyToken
// Then define your lexing rules using regular expressions.
val lex = Lexer(...)
// Then, you can query the lexer.
def apply(source: Source[Character, Position]): Iterator[Token] =
lex(source)
}
Additional traits can be mixed-in. See for instance silex.CharLexers for lexers specialized on Char
.
=Data sources=
The input of lexers is in a form of a data source.
// Building a source from a string:
val stringSource = Source.fromString("[1, 2, 3]")
// Or from a file:
val fileSource = Source.fromFile("data/clients.json")
// With a custom positioner:
val customSource = Source.fromFile("data/clients.json", IndexPositioner)
Attributes
Members list
Packages
Grouped members
Lexers
Specialized lexers operating on Char
characters. Expected to be mixed-in with silex.Lexers.
Specialized lexers operating on Char
characters. Expected to be mixed-in with silex.Lexers.
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Self type
Contains definitions relating to regular expressions.
Contains definitions relating to regular expressions.
Attributes
- See also
-
See silex.CharLexers for useful regular expressions on
Char
. - Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
-
trait Lexers
Sources
Represents iterators with Position
s and ability to mark
points and reset
to them.
Represents iterators with Position
s and ability to mark
points and reset
to them.
Attributes
- Companion
- object
- Supertypes
-
trait Iterator[Character]trait IterableOnceOps[Character, Iterator, Iterator[Character]]trait IterableOnce[Character]class Objecttrait Matchableclass AnyShow all
- Known subtypes
-
class ReaderSource[Position]class StringSource[Position]
Positions
Position within a string.
Position within a string.
Value parameters
- column
-
The column number. Zero-based.
- index
-
The index in the string. Zero-based.
- line
-
The line number. Zero-based.
Attributes
- See also
-
See silex.StringPositioner for the corresponding positioner.
- Supertypes
-
trait Serializabletrait Producttrait Equalsclass Objecttrait Matchableclass AnyShow all
Positioners
General index-based positioner.
Positioner for Unit
positions.
Indicates the start position and how to increment positions.
Indicates the start position and how to increment positions.
Attributes
- Supertypes
-
class Objecttrait Matchableclass Any
- Known subtypes
Positioner for silex.StringPosition.
Type members
Classlikes
Source over an array of character.
Source over an array of character.
Attributes
- Supertypes
-
trait Iterator[Character]trait IterableOnceOps[Character, Iterator, Iterator[Character]]trait IterableOnce[Character]class Objecttrait Matchableclass AnyShow all
Source over an interator.
Source over an interator.
Attributes
- Supertypes
-
trait Iterator[Character]trait IterableOnceOps[Character, Iterator, Iterator[Character]]trait IterableOnce[Character]class Objecttrait Matchableclass AnyShow all
Source over a Reader
.
Source over a Reader
.
Attributes
- Supertypes
-
trait Iterator[Char]trait IterableOnceOps[Char, Iterator, Iterator[Char]]trait IterableOnce[Char]class Objecttrait Matchableclass AnyShow all
Source over an array of character.
Source over an array of character.
Attributes
- Supertypes
-
trait Iterator[Char]trait IterableOnceOps[Char, Iterator, Iterator[Char]]trait IterableOnce[Char]class Objecttrait Matchableclass AnyShow all