Basic parsing framework
This commit is contained in:
parent
8c473c554e
commit
a613fa73e5
12
src/main.rs
12
src/main.rs
@ -11,7 +11,7 @@ use simplerepl::{REPL, ReplState};
|
|||||||
use tokenizer::tokenize;
|
use tokenizer::tokenize;
|
||||||
mod tokenizer;
|
mod tokenizer;
|
||||||
|
|
||||||
use parser::parse;
|
use parser::{parse, ParseResult};
|
||||||
mod parser;
|
mod parser;
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
@ -64,10 +64,14 @@ fn repl_handler(input: &str, state: &mut InterpreterState) -> String {
|
|||||||
println!("Tokens: {:?}", tokens);
|
println!("Tokens: {:?}", tokens);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let ast = match parse(&tokens, &[]) {
|
||||||
|
Ok(ast) => ast,
|
||||||
|
Err(err) => return err.msg
|
||||||
|
};
|
||||||
|
|
||||||
if state.show_parse {
|
if state.show_parse {
|
||||||
println!("not implemented")
|
println!("AST: {:?}", ast);
|
||||||
}
|
}
|
||||||
|
|
||||||
let ast = parse(&tokens);
|
format!("{:?}", ast)
|
||||||
format!("{:?}", tokens)
|
|
||||||
}
|
}
|
||||||
|
@ -1,11 +1,52 @@
|
|||||||
use tokenizer::Token;
|
use tokenizer::Token;
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub enum ASTNode {
|
||||||
|
ExprNode(Expression),
|
||||||
|
FuncNode(Function),
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct Function {
|
||||||
|
pub prototype: Prototype,
|
||||||
|
pub body: Expression
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct Prototype {
|
||||||
|
pub name: String,
|
||||||
|
pub args: Vec<String>
|
||||||
|
}
|
||||||
|
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub enum Expression {
|
||||||
|
Literal(f64),
|
||||||
|
Variable(String),
|
||||||
|
BinExp(String, Box<Expression>, Box<Expression>),
|
||||||
|
Call(String, Vec<Expression>),
|
||||||
|
}
|
||||||
|
|
||||||
|
pub type AST = Vec<ASTNode>;
|
||||||
|
|
||||||
|
//TODO make this support incomplete parses
|
||||||
|
pub type ParseResult<T> = Result<T, ParseError>;
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct ParseResult {
|
pub struct ParseError {
|
||||||
msg: i32
|
pub msg: String
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn parse(tokens: &[Token]) -> ParseResult {
|
impl ParseError {
|
||||||
|
fn new<T>(msg: &str) -> ParseResult<T> {
|
||||||
ParseResult { msg: 0 }
|
Err(ParseError { msg: msg.to_string() })
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn parse(tokens: &[Token], parsed_tree: &[ASTNode]) -> ParseResult<AST> {
|
||||||
|
|
||||||
|
let rest = tokens.to_vec().reverse();
|
||||||
|
let mut ast = parsed_tree.to_vec();
|
||||||
|
|
||||||
|
ParseError::new("Parsing not implemented")
|
||||||
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user