1//! This crate defines the lexer, parser, and abstract syntax tree for pulsar.
2//!
3//! Copyright (C) 2024 Ethan Uppal. All rights reserved.
45pub mod ast;
6pub mod attribute;
7pub mod lexer;
8pub mod op;
9pub mod parser;
10pub mod static_analysis;
11pub mod token;
12pub mod ty;