use Cow;
use Language;
/// A language definition used for syntax highlighting.
///
/// Bring your own tree-sitter grammar and its highlights query, so the editor
/// can highlight any language without the crate depending on specific grammars.
///
/// ```no_run
/// # use freya_code_editor::prelude::EditorLanguage;
/// let language = EditorLanguage::new(
/// tree_sitter_rust::LANGUAGE,
/// tree_sitter_rust::HIGHLIGHTS_QUERY,
/// );
/// ```