-
Notifications
You must be signed in to change notification settings - Fork 60
Add tree-sitter-preproc crate #485
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,5 @@ | ||
| Cargo.lock | ||
| node_modules | ||
| build | ||
| package-lock.json | ||
| /target/ | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,27 @@ | ||
| [package] | ||
| name = "tree-sitter-preproc" | ||
| description = "Preproc grammar for the tree-sitter parsing library" | ||
| version = "0.16.0" | ||
| authors = ["Calixte Denizet <cdenizet@mozilla.com>"] | ||
| license = "MIT" | ||
| readme = "bindings/rust/README.md" | ||
| keywords = ["incremental", "parsing", "preproc"] | ||
| categories = ["parsing", "text-editors"] | ||
| repository = "https://github.com/tree-sitter/tree-sitter-preproc" | ||
| edition = "2018" | ||
|
|
||
| build = "bindings/rust/build.rs" | ||
| include = [ | ||
| "bindings/rust/*", | ||
| "grammar.js", | ||
| "src/*", | ||
| ] | ||
|
|
||
| [lib] | ||
| path = "bindings/rust/lib.rs" | ||
|
|
||
| [dependencies] | ||
| tree-sitter = "^0.17" | ||
|
|
||
| [build-dependencies] | ||
| cc = "^1.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,37 @@ | ||
| # tree-sitter-preproc | ||
|
|
||
| This crate provides a Preproc grammar for the [tree-sitter][] parsing library. To | ||
| use this crate, add it to the `[dependencies]` section of your `Cargo.toml` | ||
| file. (Note that you will probably also need to depend on the | ||
| [`tree-sitter`][tree-sitter crate] crate to use the parsed result in any useful | ||
| way.) | ||
|
|
||
| ``` toml | ||
| [dependencies] | ||
| tree-sitter = "0.17" | ||
| tree-sitter-preproc = "0.16" | ||
| ``` | ||
|
|
||
| Typically, you will use the [language][language func] function to add this | ||
| grammar to a tree-sitter [Parser][], and then use the parser to parse some code: | ||
|
|
||
| ``` rust | ||
| let code = r#" | ||
| int double(int x) { | ||
| return x * 2; | ||
| } | ||
| "#; | ||
| let mut parser = Parser::new(); | ||
| parser.set_language(tree_sitter_preproc::language()).expect("Error loading Preproc grammar"); | ||
| let parsed = parser.parse(code, None); | ||
| ``` | ||
|
|
||
| If you have any questions, please reach out to us in the [tree-sitter | ||
| discussions] page. | ||
|
|
||
| [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html | ||
| [language func]: https://docs.rs/tree-sitter-preproc/*/tree_sitter_preproc/fn.language.html | ||
| [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html | ||
| [tree-sitter]: https://tree-sitter.github.io/ | ||
| [tree-sitter crate]: https://crates.io/crates/tree-sitter | ||
| [tree-sitter discussions]: https://github.com/tree-sitter/tree-sitter/discussions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| // Adapted from tree-sitter-python bindings | ||
| use std::path::Path; | ||
Luni-4 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| extern crate cc; | ||
|
|
||
| fn main() { | ||
| let src_dir = Path::new("src"); | ||
|
|
||
| let mut c_config = cc::Build::new(); | ||
| c_config.include(&src_dir); | ||
| c_config | ||
| .flag_if_supported("-Wno-unused-parameter") | ||
| .flag_if_supported("-Wno-unused-but-set-variable") | ||
| .flag_if_supported("-Wno-trigraphs"); | ||
| let parser_path = src_dir.join("parser.c"); | ||
| c_config.file(&parser_path); | ||
| println!("cargo:rerun-if-changed={}", parser_path.to_str().unwrap()); | ||
| c_config.compile("parser"); | ||
|
|
||
| let mut cpp_config = cc::Build::new(); | ||
| cpp_config.cpp(true); | ||
| cpp_config.include(&src_dir); | ||
| cpp_config | ||
| .flag_if_supported("-Wno-unused-parameter") | ||
| .flag_if_supported("-Wno-unused-but-set-variable"); | ||
| let scanner_path = src_dir.join("scanner.cc"); | ||
| cpp_config.file(&scanner_path); | ||
| println!("cargo:rerun-if-changed={}", scanner_path.to_str().unwrap()); | ||
| cpp_config.compile("scanner"); | ||
| } | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,64 @@ | ||
| // Adapted from tree-sitter-python bindings | ||
| // -*- coding: utf-8 -*- | ||
Luni-4 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| // ------------------------------------------------------------------------------------------------ | ||
| // Copyright © 2021, tree-sitter-preproc authors. | ||
| // See the LICENSE file in this repo for license details. | ||
| // ------------------------------------------------------------------------------------------------ | ||
|
|
||
| //! This crate provides a Preproc grammar for the [tree-sitter][] parsing library. | ||
| //! | ||
| //! Typically, you will use the [language][language func] function to add this grammar to a | ||
| //! tree-sitter [Parser][], and then use the parser to parse some code: | ||
| //! | ||
| //! ``` | ||
| //! use tree_sitter::Parser; | ||
| //! | ||
| //! let code = r#" | ||
| //! int double(int x) { | ||
| //! return x * 2; | ||
| //! } | ||
| //! "#; | ||
| //! let mut parser = Parser::new(); | ||
| //! parser.set_language(tree_sitter_preproc::language()).expect("Error loading Preproc grammar"); | ||
| //! let parsed = parser.parse(code, None); | ||
| //! # let parsed = parsed.unwrap(); | ||
| //! # let root = parsed.root_node(); | ||
| //! # assert!(!root.has_error()); | ||
| //! ``` | ||
| //! | ||
| //! [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html | ||
| //! [language func]: fn.language.html | ||
| //! [Parser]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Parser.html | ||
| //! [tree-sitter]: https://tree-sitter.github.io/ | ||
|
|
||
| use tree_sitter::Language; | ||
|
|
||
| extern "C" { | ||
| fn tree_sitter_preproc() -> Language; | ||
| } | ||
|
|
||
| /// Returns the tree-sitter [Language][] for this grammar. | ||
| /// | ||
| /// [Language]: https://docs.rs/tree-sitter/*/tree_sitter/struct.Language.html | ||
| pub fn language() -> Language { | ||
| unsafe { tree_sitter_preproc() } | ||
| } | ||
|
|
||
| /// The source of the Preproc tree-sitter grammar description. | ||
| pub const GRAMMAR: &str = include_str!("../../grammar.js"); | ||
|
|
||
| /// The content of the [`node-types.json`][] file for this grammar. | ||
| /// | ||
| /// [`node-types.json`]: https://tree-sitter.github.io/tree-sitter/using-parsers#static-node-types | ||
| pub const NODE_TYPES: &str = include_str!("../../src/node-types.json"); | ||
|
|
||
| #[cfg(test)] | ||
| mod tests { | ||
| #[test] | ||
| fn can_load_grammar() { | ||
| let mut parser = tree_sitter::Parser::new(); | ||
| parser | ||
| .set_language(super::language()) | ||
| .expect("Error loading Preproc grammar"); | ||
| } | ||
| } | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.