Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pest-parser/ast
https://github.com/pest-parser/ast
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/pest-parser/ast
- Owner: pest-parser
- License: apache-2.0
- Created: 2018-09-01T04:30:54.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2024-03-28T21:23:14.000Z (8 months ago)
- Last Synced: 2024-05-02T02:07:13.614Z (6 months ago)
- Language: Rust
- Size: 99.6 KB
- Stars: 69
- Watchers: 11
- Forks: 15
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-pest - pest-ast - It can help to reduce boilerplate when converting pest parse trees to abstract syntax trees. (Tooling / Boilerplate reduction and testing)
README
# pest-ast
This is an in-development add-on to the pest parsing library.
Pest-ast provides a structured manner to go from the "dynamically typed" Pest Parse Tree
to a strongly typed (Abstract) Syntax Tree, as well as a derive to do so automatically.
In the future, it's planned to optionally additionally check the source grammar to statically
prevent issues that are currently detected at runtime.In the _future_ 🦄, pest-ast may provide a way of defining grammar directly on the AST nodes.
## Note:
This crate is actually `from-pest`, which provides the trait framework for the said conversion.
[`pest-ast`](./derive/README.md) provides the actual derive for the conversion.This README is the root of the repository for legacy reasons. This will be corrected in a future reorganization.
## Contributing
Check out the [issue tracker](https://github.com/pest-parser/ast);
we try to keep it stocked with [good-first-issue](https://github.com/pest-parser/ast/labels/good%20first%20issue)
and [help-wanted](https://github.com/pest-parser/ast/issues?q=is%3Aopen+label%3A%22help+wanted%22) opportunities.
If you have questions, don't be afraid to @ the author (CAD97)
[on Gitter](https://gitter.im/pest-parser/pest) or [on Discord](https://discord.gg/FuPE9JE).
The best thing you can probably do for this library currently is to use it!
More than anything else, I just want eyes on the interface trying it out and seeing where it shines and wher it falters.## License
pest-deconstruct is licensed under both the MIT license and the Apache License 2.0.
Either terms may be used at your option. All PRs are understood to be agreeing to
contribution under these terms as defined in the Apache license.See [LICENSE-APACHE] and [LICENSE-MIT] for details.
Copyright 2018 Christopher Durham (aka CAD97)
Dual licensed under the Apache License, Version 2.0 and the MIT License
(collectively, the "License"); you may not use this file except in
compliance with the License. You may obtain a copy of the License at
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.