pub fn parse_constant(
par: &mut Parser<'_>,
pub_qual: Option<Span>,
) -> ParseResult<Node<ConstantDecl>>
Expand description
Parse a constant, e.g. const MAGIC_NUMBER: u256 = 4711
.
§Panics
Panics if the next token isn’t const
.
pub fn parse_constant(
par: &mut Parser<'_>,
pub_qual: Option<Span>,
) -> ParseResult<Node<ConstantDecl>>
Parse a constant, e.g. const MAGIC_NUMBER: u256 = 4711
.
Panics if the next token isn’t const
.