1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//!
//! Interpreter for `bjørn` language.
//!

#[macro_use] extern crate lazy_static;
extern crate unicode_segmentation;
extern crate regex;

mod token;
mod lexer;
mod parser;
mod ast;
pub mod memory;
mod interpreter;
mod value;
pub mod builtins;

use lexer::Lexer;
use parser::Parser;
use interpreter::Interpreter;

///
/// Only proceed to the lexical analysis.
/// For testing purposes.
///
/// ```
/// extern crate bjorn;
///
/// let input = "2 + 2";
/// println!("{:?}", bjorn::scan(input));
/// ```
///
pub fn scan(input: &str) -> Vec<token::Token> {
    let lexer = Lexer::new(input);
    let mut scan = Vec::new();
    for t in lexer {
        scan.push(t);
    }
    scan.into_iter().flatten().collect::<Vec<token::Token>>()
}

///
/// Only proceed to the lexical and syntaxic analysis.
/// For testing purposes.
///
/// ```
/// extern crate bjorn;
///
/// let input = "2 + 2";
/// println!("{:?}", bjorn::parse(input));
/// ```
///
pub fn parse(input: &str) -> ast::AST {
    Parser::new(
        Lexer::new(input)
    ).parse()
}

///
/// Entrypoint of `bjorn` library.
///
/// ```
/// extern crate bjorn;
///
/// let input = "2 + 2";
/// println!("{}", bjorn::interpret(input));
/// ```
///
pub fn interpret(input: &str) -> String {
    Interpreter::new(
        Parser::new(
            Lexer::new(input)
        )
    ).interpret().to_string()
}


#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn library_entrypoint() {
        assert_eq!(interpret(""), "")
    }
}