parse_identifier

Function parse_identifier 

Source
pub fn parse_identifier(input: &str) -> IResult<&str, &str>
Expand description

Parse an identifier.

Identifiers in AIMX:

  • must start with a letter or underscore
  • may contain letters, digits, and underscores after the first character

A leading underscore is commonly used for local or alignable references.