Skip to content
/ pylox Public

🦊 A Python-based frontend for a Lox interpreter, handling lexical analysis, parsing, and abstract syntax tree generation.

Notifications You must be signed in to change notification settings

hari4742/pylox

Repository files navigation

Pylox 🦊

A Python-based frontend for a Lox interpreter, implementing lexical analysis, parsing, abstract syntax tree (AST) generation, and expression evaluation.

πŸ“– Overview

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.

πŸš€ Features

  • 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.

πŸ“ Usage

Run a Lox script

python pylox.py examples/script.lox

Run Pylox with different commands:

Tokenize

python pylox-cli.py tokenize examples/script.lox

Outputs the tokenized representation of the source code.

Parse

python pylox-cli.py parse examples/script.lox

Parses the tokens into an abstract syntax tree (AST) and prints its structure.

Evaluate

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.

πŸ“œ Grammar

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 ")" ;

πŸ›  Project Structure

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

πŸ™Œ Acknowledgments

About

🦊 A Python-based frontend for a Lox interpreter, handling lexical analysis, parsing, and abstract syntax tree generation.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published