Returns true if this syntax represents "no arguments".
(&self)
| 363 | |
| 364 | /// Returns true if this syntax represents "no arguments". |
| 365 | pub(crate) fn is_empty(&self) -> bool { |
| 366 | self.singular.is_empty() && self.repeated.is_none() |
| 367 | } |
| 368 | |
| 369 | /// Produces a user-friendly description of this callable syntax. |
| 370 | pub(crate) fn describe(&self) -> String { |
no outgoing calls