Remove private tags from idents

This commit is contained in:
Ayaz Hafiz 2022-04-25 11:13:30 -04:00
parent 7ea4d7171b
commit 67eb4b9faa
No known key found for this signature in database
GPG key ID: 0E2A37416A25EF58
11 changed files with 11 additions and 185 deletions

View file

@ -2438,7 +2438,6 @@ where
fn ident_to_expr<'a>(arena: &'a Bump, src: Ident<'a>) -> Expr<'a> {
match src {
Ident::GlobalTag(string) => Expr::GlobalTag(string),
Ident::PrivateTag(string) => Expr::PrivateTag(string),
Ident::OpaqueRef(string) => Expr::OpaqueRef(string),
Ident::Access { module_name, parts } => {
let mut iter = parts.iter();