From ab8d4ed0cec329f9e935f3c037e404dd274d9124 Mon Sep 17 00:00:00 2001 From: Jason Williams <936006+jasonwilliams@users.noreply.github.com> Date: Tue, 27 Nov 2018 14:48:57 +0000 Subject: [PATCH 1/3] Update README.md --- README.md | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 5019c371b5..d57a6ebd5f 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,15 @@ This is an experimental Javascript lexer, parser and Just-in-Time compiler writt [![](https://docs.rs/Boa/badge.svg)](https://docs.rs/Boa/) -This project is an attempted rewrite of Bebbington's js.rs and will look very, very similar to it for a while. As that repo has not been touched in a long time a lot of the Rust is out-of-date so a lot of things are probably in error by today's standards +This project is an attempted rewrite of Bebbington's js.rs. Most of the Rust code has been rewritten from scratch. + +#### Roadmap +* Boxing/Unboxing of primitive types (using "string".length) +* Supporting non-semicolons +* Adding support for constructors #### Usage * Checkout this project * Build `cargo build` * `cargo run` -* You can make changes to tests/js/test.js and build again \ No newline at end of file +* You can make changes to tests/js/test.js and build again From 132250ca85beb3b9e69325f96a828e3471d6817d Mon Sep 17 00:00:00 2001 From: Jason Williams <936006+jasonwilliams@users.noreply.github.com> Date: Tue, 27 Nov 2018 14:58:29 +0000 Subject: [PATCH 2/3] Update README.md --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d57a6ebd5f..ed458f4b34 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,9 @@ This project is an attempted rewrite of Bebbington's js.rs. Most of the Rust cod #### Roadmap * Boxing/Unboxing of primitive types (using "string".length) -* Supporting non-semicolons * Adding support for constructors +* Better error output +* #### Usage * Checkout this project From 9a15a4069cb31dfd64edd9295c73644e0001c614 Mon Sep 17 00:00:00 2001 From: Jason Williams <936006+jasonwilliams@users.noreply.github.com> Date: Tue, 27 Nov 2018 15:00:21 +0000 Subject: [PATCH 3/3] updating Readme Sorting out the roadmap --- README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/README.md b/README.md index ed458f4b34..ff5d90d0b8 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,6 @@ This project is an attempted rewrite of Bebbington's js.rs. Most of the Rust cod * Boxing/Unboxing of primitive types (using "string".length) * Adding support for constructors * Better error output -* #### Usage * Checkout this project