biome_css_syntax 0.5.8

SyntaxKind and common rowan definitions for biome_css_parser
Documentation
//! This module defines the Concrete Syntax Tree used by Biome.
//!
//! The tree is entirely lossless, whitespace, comments, and errors are preserved.
//! It also provides traversal methods including parent, children, and siblings of nodes.
//!
//! This is a simple wrapper around the `rowan` crate which does most of the heavy lifting and is language agnostic.

use crate::{CssRoot, CssSyntaxKind};
use biome_rowan::Language;

#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Default)]
pub struct CssLanguage;

impl Language for CssLanguage {
    type Kind = CssSyntaxKind;
    type Root = CssRoot;
}

pub type CssSyntaxNode = biome_rowan::SyntaxNode<CssLanguage>;
pub type CssSyntaxToken = biome_rowan::SyntaxToken<CssLanguage>;
pub type CssSyntaxElement = biome_rowan::SyntaxElement<CssLanguage>;
pub type CssSyntaxNodeChildren = biome_rowan::SyntaxNodeChildren<CssLanguage>;
pub type CssSyntaxElementChildren = biome_rowan::SyntaxElementChildren<CssLanguage>;
pub type CssSyntaxList = biome_rowan::SyntaxList<CssLanguage>;