forked from FuelLabs/sway
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes FuelLabs#3032
- Loading branch information
1 parent
e7674f7
commit 185a0a7
Showing
2 changed files
with
7 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,14 @@ | ||
use sway_types::Ident; | ||
|
||
use crate::language::{ty::*, Visibility}; | ||
use crate::{ | ||
language::{ty::*, Visibility}, | ||
AttributesMap, | ||
}; | ||
|
||
#[derive(Clone, Debug, PartialEq, Eq)] | ||
pub struct TyConstantDeclaration { | ||
pub name: Ident, | ||
pub value: TyExpression, | ||
pub(crate) visibility: Visibility, | ||
pub attributes: AttributesMap, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters