sway-core 0.35.3

Sway core language.
Documentation
mod abi;
mod constant;
#[allow(clippy::module_inception)]
mod declaration;
mod r#enum;
mod function;
mod impl_trait;
mod storage;
mod r#struct;
mod r#trait;
mod trait_fn;
mod variable;

pub use abi::*;
pub use constant::*;
pub use declaration::*;
pub use function::*;
pub use impl_trait::*;
pub use r#enum::*;
pub use r#struct::*;
pub use r#trait::*;
pub use storage::*;
pub use trait_fn::*;
pub use variable::*;