Whether the AST should be printed out in a more human readable format.
(&self)
| 112 | |
| 113 | /// Whether the AST should be printed out in a more human readable format. |
| 114 | pub fn simple(&self) -> bool { |
| 115 | matches!(self.mode, FormatMode::Simple | FormatMode::SimpleRedacted) |
| 116 | } |
| 117 | |
| 118 | /// Whether the AST should be printed in redacted form |
| 119 | pub fn redacted(&self) -> bool { |