rslua_traits/
comments.rs

1pub trait Comments {
2    fn get_comments(&self) -> Vec<&str>;
3    fn has_comments(&self) -> bool {
4        !self.get_comments().is_empty()
5    }
6}