You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Trunk project originally started with me ([Ryan](https://github.com/ryangjchandler)) experimenting with a handwritten recursive-descent parser for PHP written in Rust. The parser evolved very quickly and I found myself already being able to parse relatively complex programs that I had written myself.
20
-
21
-
Once I had something worth sharing, I created this GitHub repository and some people were interested in what I was doing. Since then, it's become a hobby project for myself and I tend to work on it in my spare time.
22
-
23
-
The current goal for Trunk is to get a fully functional parser up and running so that it can be used in some meaningful projects, aimed at bringing the speed and performance of modern PHP tooling closer to that of [our](https://deno.land)[cousins](https://bun.sh) in [JavaScript](https://swc.rs/)[land](https://esbuild.github.io).
24
-
25
-
#### Libraries and Tools
26
-
27
-
*[Lexer](/trunk_lexer/)
28
-
*[Parser](/trunk_parser/)
29
-
30
-
> Neither of these projects are production-ready so please don't use them for anything critical.
31
-
32
11
#### Contributing
33
12
34
-
All contributions to Trunk are welcome. It's the perfect project for Rust beginners since we don't use many of Rust's complex features and the core concepts in the parser are purposely simple.
13
+
All contributions to this repository are welcome. It's the perfect project for Rust beginners since we don't use many of Rust's complex features and the core concepts in the parser are purposely simple.
35
14
36
15
If you do wish to contribute, we just ask you to follow a few simple rules.
37
16
@@ -42,4 +21,4 @@ If you do wish to contribute, we just ask you to follow a few simple rules.
0 commit comments