wgsl-parse 0.1.2

Parse a wgsl source file to a syntax tree
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]

pub mod error;
pub mod span;
pub mod syntax;

mod lexer;
mod parser;
mod parser_support;
mod syntax_display;
mod syntax_impl;

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