slicec 0.3.3

The Slice parser and other core components for Slice compilers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) ZeroC, Inc.

pub mod attributes;

mod comments;
mod elements;
mod traits;
mod util;
mod wrappers;

// Re-export the contents of the grammar submodules directly into the grammar module. This is
// for convenience, so users don't need to worry about the submodule structure while importing.
pub use self::attributes::AttributeKind;
pub use self::comments::*;
pub use self::elements::*;
pub use self::traits::*;
pub use self::util::*;
pub use self::wrappers::*;