(self, value)
| 180 | return self |
| 181 | |
| 182 | def symbol(self, value): |
| 183 | self._validate_named(value, Symbol) |
| 184 | |
| 185 | self._specifier["symbol"] = value |
| 186 | return self |
| 187 | |
| 188 | def trim(self, value): |
| 189 | if isinstance(value, bool): |
nothing calls this directly
no test coverage detected