Add export alias and export extern (#4878)

* export alias

* export extern
This commit is contained in:
JT
2022-03-20 07:58:01 +13:00
committed by GitHub
parent 285f91e67a
commit f3bb1d11d3
10 changed files with 292 additions and 15 deletions

View File

@ -1,6 +1,7 @@
use crate::{BlockId, DeclId};
use crate::{AliasId, BlockId, DeclId};
pub enum Exportable {
Decl(DeclId),
Alias(AliasId),
EnvVar(BlockId),
}