mildew.lexer

This module implements the Token and Lexer structs

Members

Structs

Lexer
struct Lexer

Lexes code and returns the individual tokens

Position
struct Position

This struct represents the line and column number of a token, starting at 1.

Token
struct Token

This struct represents a token, a fundamental building block of all scripts. The code of a script is first separated by token so that the parser can analyze each token.

Meta