solang_parser/helpers/
mod.rs

1// SPDX-License-Identifier: Apache-2.0
2
3//! Helper functions and traits for parse tree types.
4
5mod fmt;
6
7mod loc;
8pub use loc::{CodeLocation, OptionalCodeLocation};
9
10mod ord;