Lexer.fromString constructor

Lexer.fromString(
  1. String src
)

Implementation

factory Lexer.fromString(String src) {
  return Lexer(src.runes);
}