nichlink-core 0.1.3

Registry, transaction, contracts, grafts, and diagnostics for NichLink
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Host-entry grammars: `application!`, `graft_plan!` and `static_graft_plan!`.
//! 宿主入口语法:`application!`、`graft_plan!` 与 `static_graft_plan!`。
//!
//! The face parser lives in [`super::face`]; this file only mounts the two
//! entry-level grammars and re-exports their items, so every entry path stays
//! put: `application!` discovery in `application`, the graft grammars in
//! `graft`. Neither grammar executes anything.
//! 注册面解析器在 [`super::face`];本文件只挂载两种入口级语法并重导出其条目,
//! 因此每个入口路径都保持不变:`application!` 发现在 `application`,graft 语法在
//! `graft`。两种语法都不执行任何东西。

#[path = "entries/application.rs"]
mod application;
#[path = "entries/graft.rs"]
mod graft;

pub use application::application_entries;
pub use graft::{GraftExpressions, GraftSyntax, graft_entries};