pub fn declaration_or_assignment<'a>(
expression: impl DatexParserTrait<'a>,
unary: impl DatexParserTrait<'a>,
) -> impl DatexParserTrait<'a>Expand description
A declaration or assignment, e.g. var x = 42;, const x = 69, x = 43;, or type x = 42