wgsl-parse 0.3.2

Parse a wgsl source file to a syntax tree
Documentation
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]

pub mod error;
pub mod lexer;
pub mod parser;
pub mod span;
pub mod syntax;

mod parser_support;
mod syntax_display;
mod syntax_impl;

#[cfg(feature = "tokrepr")]
mod tokrepr;
#[cfg(feature = "tokrepr")]
pub use ::tokrepr::TokRepr;

pub use error::Error;
pub use parser::{parse_str, recognize_str};
pub use syntax_impl::SyntaxNode;