diff options
Diffstat (limited to 'third_party/rust/clap_derive/src/utils/mod.rs')
-rw-r--r-- | third_party/rust/clap_derive/src/utils/mod.rs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/third_party/rust/clap_derive/src/utils/mod.rs b/third_party/rust/clap_derive/src/utils/mod.rs new file mode 100644 index 0000000000..77a467c754 --- /dev/null +++ b/third_party/rust/clap_derive/src/utils/mod.rs @@ -0,0 +1,9 @@ +mod doc_comments; +mod spanned; +mod ty; + +pub use self::{ + doc_comments::process_doc_comment, + spanned::Sp, + ty::{inner_type, is_simple_ty, sub_type, subty_if_name, Ty}, +}; |