13 lines
279 B
Rust
13 lines
279 B
Rust
|
|
/*!
|
|||
|
|
* Parser Declarations Module
|
|||
|
|
*
|
|||
|
|
* 宣言(Declaration)の解析を担当するモジュール群
|
|||
|
|
* Box定義、関数定義、use文などの宣言を処理
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
pub mod box_definition;
|
|||
|
|
pub mod static_box;
|
|||
|
|
pub mod dependency_helpers;
|
|||
|
|
|
|||
|
|
// Re-export commonly used items
|