mildew.lexer

This module implements the Token and Lexer structs

────────────────────────────────────────────────────────────────────────────────

Copyright (C) 2021 pillager86.rf.gd

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <https://www.gnu.org/licenses/>.

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