shape-ast 0.1.8

AST types and Pest grammar for the Shape programming language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Parser tests
//!
//! This module organizes parser tests by category:
//! - control_flow: Tests for control flow constructs (if, match, for, while, return)
//! - types: Tests for type system features (type aliases, interfaces, enums, meta definitions)
//! - advanced: Tests for advanced features (annotations, decomposition, fuzzy ops, integration)

pub mod advanced;
pub mod control_flow;
pub mod grammar_coverage;
#[cfg(feature = "deep-tests")]
pub mod module_deep_tests;
pub mod strings;
pub mod types;