(&self)
| 51 | |
| 52 | impl CSharp { |
| 53 | pub(crate) fn access_modifier(&self) -> &'static str { |
| 54 | if self.opts.internal { |
| 55 | "internal" |
| 56 | } else { |
| 57 | "public" |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | pub(crate) fn qualifier(&self) -> String { |
| 62 | let world = self.name.to_upper_camel_case(); |
no outgoing calls
no test coverage detected