aboutsummaryrefslogtreecommitdiff
path: root/helix-term/src/editor.rs
diff options
context:
space:
mode:
authorBlaž Hrastnik2020-09-19 02:57:57 +0000
committerBlaž Hrastnik2020-09-19 02:58:08 +0000
commit1303ffd94ab4fcedc2d1b63107e4ccf6c07d3465 (patch)
tree7bfdd2b102528039c745bc62874e8df403a9f55a /helix-term/src/editor.rs
parent91343a68461608efa9f45be75a7dcaece0fd65a7 (diff)
Remove old test.
Diffstat (limited to 'helix-term/src/editor.rs')
-rw-r--r--helix-term/src/editor.rs75
1 files changed, 0 insertions, 75 deletions
diff --git a/helix-term/src/editor.rs b/helix-term/src/editor.rs
index 9b5cad51..76bdffb1 100644
--- a/helix-term/src/editor.rs
+++ b/helix-term/src/editor.rs
@@ -436,78 +436,3 @@ impl Editor {
// }
// end => scopes.pop()
// }
-#[test]
-fn test_parser() {
- use helix_core::syntax::{HighlightConfiguration, HighlightEvent, Highlighter};
-
- let source_code = include_str!("../test.rs");
-
- let highlight_names: Vec<String> = [
- "attribute",
- "constant",
- "function.builtin",
- "function",
- "keyword",
- "operator",
- "property",
- "punctuation",
- "punctuation.bracket",
- "punctuation.delimiter",
- "string",
- "string.special",
- "tag",
- "type",
- "type.builtin",
- "variable",
- "variable.builtin",
- "variable.parameter",
- ]
- .iter()
- .cloned()
- .map(String::from)
- .collect();
-
- let language = helix_syntax::get_language(&helix_syntax::LANG::Rust);
- // let mut parser = tree_sitter::Parser::new();
- // parser.set_language(language).unwrap();
- // let tree = parser.parse(source_code, None).unwrap();
-
- let mut highlighter = Highlighter::new();
-
- let mut config = HighlightConfiguration::new(
- language,
- &std::fs::read_to_string(
- "../helix-syntax/languages/tree-sitter-rust/queries/highlights.scm",
- )
- .unwrap(),
- &std::fs::read_to_string(
- "../helix-syntax/languages/tree-sitter-rust/queries/injections.scm",
- )
- .unwrap(),
- "", // locals.scm
- )
- .unwrap();
-
- config.configure(&highlight_names);
-
- let highlights = highlighter
- .highlight(&config, source_code.as_bytes(), None, |_| None)
- .unwrap();
-
- for event in highlights {
- match event.unwrap() {
- HighlightEvent::Source { start, end } => {
- eprintln!("source: {}-{}", start, end);
- // iterate over range char by char
- }
- HighlightEvent::HighlightStart(s) => {
- eprintln!("highlight style started: {:?}", highlight_names[s.0]);
- // store/push highlight styles
- }
- HighlightEvent::HighlightEnd => {
- eprintln!("highlight style ended");
- // pop highlight styles
- }
- }
- }
-}