mirror of https://github.com/boa-dev/boa.git
Jason Williams
6 years ago
5 changed files with 44 additions and 8 deletions
@ -1,4 +1,4 @@ |
|||||||
[[package]] |
[[package]] |
||||||
name = "Boa" |
name = "boa" |
||||||
version = "0.1.1" |
version = "0.1.1" |
||||||
|
|
||||||
|
@ -1,6 +1,6 @@ |
|||||||
/// The Javascript Abstract Syntax Tree
|
/// The Javascript Abstract Syntax Tree
|
||||||
pub mod ast; |
pub mod ast; |
||||||
/// Parses a string stream into a sequence of tokens
|
/// Lexical analysis (tokenizing/lexing).
|
||||||
pub mod lexer; |
pub mod lexer; |
||||||
// Parses a sequence of tokens into expressions
|
// Parses a sequence of tokens into expressions
|
||||||
pub mod parser; |
pub mod parser; |
||||||
|
Loading…
Reference in new issue