A Python-based frontend for a Lox interpreter, implementing lexical analysis, parsing, abstract syntax tree (AST) generation, and expression evaluation.
Pylox is a frontend implementation of a Lox interpreter, inspired by Crafting Interpreters by Robert Nystrom. It processes Lox source code by tokenizing it, constructing an abstract syntax tree, evaluating expressions, and executing statements.
- Lexical Analysis: Tokenizes source code into meaningful lexical components.
- Parsing: Constructs an abstract syntax tree (AST) from tokenized input.
- AST Printer: Provides a visual representation of the parsed AST.
- Expression Evaluation: Computes the results of parsed expressions.
- Error Handling: Implements structured error reporting for syntax and runtime exceptions.
- Scoped Environment: Supports variable scoping and function execution.
python pylox.py examples/script.lox
Run Pylox with different commands:
python pylox-cli.py tokenize examples/script.lox
Outputs the tokenized representation of the source code.
python pylox-cli.py parse examples/script.lox
Parses the tokens into an abstract syntax tree (AST) and prints its structure.
python pylox-cli.py evaluate examples/script.lox
Evaluates expressions in the source code and outputs computed results.
Executes the script by interpreting its statements.
Pylox uses a recursive descent parser based on the following context-free grammar:
program -> declaration* EOF ;
declaration -> funDecl | varDecl | statement ;
funDecl -> "fun" function ;
function -> IDENTIFIER "(" parameters? ")" block ;
parameters -> IDENTIFIER ( "," IDENTIFIER )* ;
statement -> exprStmt | forStmt | ifStmt | printStmt | returnStmt | whileStmt | block;
returnStmt -> "return" expression? ";" ;
forStmt -> "for" "(" (varDecl | exprStmt | ";" ) expression? ";" expression? ")" statement ;
whileStmt -> "while" "(" expression ")" statement ;
ifStmt -> "if" "(" expression ")" statement ( "else" statement )? ;
block -> "{" declaration* "}" ;
varDecl -> "var" IDENTIFIER ( "=" expression )? ";" ;
exprStmt -> expression ";" ;
printStmt -> "print" expression ";" ;
expression -> assignment ;
assignment -> IDENTIFIER "=" assignment | logic_or ;
logic_or -> logic_and ( "or" logic_and )* ;
logic_and -> equality ( "and" equality )* ;
equality -> comparison ( ("!=" | "==") comparison )* ;
comparison -> term ( ( ">" | ">=" | "<" | "<=" ) term )*;
term -> factor ( ( "-" | "+" ) factor )* ;
factor -> unary ( ( "/" | "*" ) unary )* ;
unary -> ( "!" | "-" ) unary | call ;
call -> primary ( "(" arguments? ")" )* ;
arguments -> expression ( "," expression )* ;
primary -> NUMBER | STRING | "true" | "false" | "nil" | "(" expression ")" ;
pylox/
βββ lox/
β βββ ast_printer.py # Prints AST structures
β βββ environment.py # Manages variable scopes
β βββ error.py # Handles error reporting
β βββ expr.py # Defines AST expression nodes
β βββ interpreter.py # Core interpreter logic
β βββ lox_callable.py # Interface for callable functions
β βββ lox_function.py # Implements Lox functions
β βββ lox.py # Main Lox class
β βββ parser.py # Implements parsing logic
β βββ return_error.py # Return statement exception handling
β βββ scanner.py # Tokenizes source code
β βββ stmt.py # Defines AST statement nodes
β βββ token.py # Token class and type declarations
βββ examples/
β βββ script.lox # Sample Lox scripts
βββ app/
β βββ main.py
βββ tool/
β βββ generate_ast.py # Helper script for AST node generation
βββ pylox.py # Entrypoint for the interpreter
βββ pylox-cli.py # Entry point for command execution
βββ README.md
βββ requirements.txt
βββ LICENSE
- Inspired by Crafting Interpreters by Robert Nystrom.
- Special thanks to code crafters more about them here.