arborium_idris/lib.rs
1//! THIS FILE IS GENERATED FROM xtask/templates/lib.stpl.rs; DO NOT EDIT MANUALLY
2
3#![doc = include_str!("../README.md")]
4
5use tree_sitter_language::LanguageFn;
6
7unsafe extern "C" {
8 fn tree_sitter_idris() -> *const ();
9}
10
11/// Returns the idris tree-sitter [`LanguageFn`].
12pub const fn language() -> LanguageFn {
13 unsafe { LanguageFn::from_raw(tree_sitter_idris) }
14}
15
16
17
18/// The highlights query for idris.
19pub const HIGHLIGHTS_QUERY: &str = include_str!("../queries/highlights.scm");
20
21
22
23
24/// The injections query for idris (empty - no injections available).
25pub const INJECTIONS_QUERY: &str = "";
26
27
28
29/// The locals query for idris (empty - no locals available).
30pub const LOCALS_QUERY: &str = "";
31