flow_expression_parser/
parse.rs

1/// V0 parser logic
2pub mod v0;
3/// V1 parser logic
4pub mod v1;
5
6/// The reserved reference name for schematic input. Used in schematic manifests to denote schematic input.
7pub const SCHEMATIC_INPUT: &str = "<input>";
8/// The reserved reference name for schematic output. Used in schematic manifests to denote schematic output.
9pub const SCHEMATIC_OUTPUT: &str = "<output>";
10/// The reserved reference name for schematic output. Used in schematic manifests to denote schematic output.
11pub const SCHEMATIC_NULL: &str = "__null__";
12/// The reserved reference name for a namespace link. Used in schematic manifests to pass a collection to a port by its namespace.
13pub const NS_LINK: &str = "<link>";
14/// The reserved name for components that send static data.
15pub const SENDER_ID: &str = "core::sender";
16/// The reserved name for data that Wick injects itself.
17pub const CORE_ID: &str = "core";
18/// The name of SENDER's output port.
19pub const SENDER_PORT: &str = "output";