slicec/grammar/mod.rs
1// Copyright (c) ZeroC, Inc.
2
3pub mod attributes;
4
5mod comments;
6mod elements;
7mod traits;
8mod util;
9mod wrappers;
10
11// Re-export the contents of the grammar submodules directly into the grammar module. This is
12// for convenience, so users don't need to worry about the submodule structure while importing.
13pub use self::attributes::AttributeKind;
14pub use self::comments::*;
15pub use self::elements::*;
16pub use self::traits::*;
17pub use self::util::*;
18pub use self::wrappers::*;