pub fn parse_primary(input: &str) -> IResult<&str, Primary>Expand description
Parse a primary expression.
Recognizes literals, references, collections, and parenthesized expressions,
and emits a Primary node. Used internally by the expression parser.
ยงGrammar
The primary expression grammar follows:
primary = literal | reference | '(' expression ')'Where:
literalrepresents any valid literal value (number, text, boolean, date, task)referencerepresents a variable or field referenceexpressionrepresents any valid AIMX expression