Expose symbolic identifier parser

This commit is contained in:
Patrick Lühne 2019-11-06 21:16:04 -06:00
parent 8870cee179
commit 7af51e9e64
Signed by: patrick
GPG Key ID: 05F3611E97A70ABF
1 changed files with 1 additions and 1 deletions

View File

@ -100,7 +100,7 @@ fn is_uppercase_alphanumeric(c: char) -> bool
c.is_alphanumeric() && c.is_uppercase()
}
fn symbolic_identifier(i: &str) -> IResult<&str, String>
pub fn symbolic_identifier(i: &str) -> IResult<&str, String>
{
let (i, symbolic_identifier) = map
(