2025-08-16 12:19:58 +09:00
|
|
|
|
/*!
|
|
|
|
|
|
* Parser Declarations Module
|
2025-09-17 07:43:07 +09:00
|
|
|
|
*
|
2025-08-16 12:19:58 +09:00
|
|
|
|
* 宣言(Declaration)の解析を担当するモジュール群
|
|
|
|
|
|
* Box定義、関数定義、use文などの宣言を処理
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
pub mod box_definition;
|
2025-09-19 08:34:29 +09:00
|
|
|
|
pub mod box_def;
|
2025-08-16 12:19:58 +09:00
|
|
|
|
pub mod dependency_helpers;
|
2025-09-17 07:43:07 +09:00
|
|
|
|
pub mod static_box;
|
2025-09-22 21:52:39 +09:00
|
|
|
|
pub mod static_def;
|
2025-08-16 12:19:58 +09:00
|
|
|
|
|
|
|
|
|
|
// Re-export commonly used items
|