rumoca 0.7.28

Modelica compiler written in RUST
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! MLS Chapter 2: Lexical Structure
//!
//! This module tests conformance to MLS 3.7-dev Chapter 2, which defines:
//! - §2.1 Character Set
//! - §2.2 Comments
//! - §2.3 Identifiers, Names, and Keywords
//! - §2.4 Literals
//! - §2.5 Operator Symbols
//!
//! Reference: https://specification.modelica.org/master/lexicalstructure.html

pub mod section_2_1_2;
pub mod section_2_3;
pub mod section_2_4;
pub mod section_2_5;
pub mod section_2_high_priority;
pub mod section_2_low_priority;