| 236 | /// Represents the null keyword (ex. `null`). |
| 237 | #[derive(Debug, PartialEq, Clone)] |
| 238 | pub struct NullKeyword { |
| 239 | pub range: Range, |
| 240 | } |
| 241 | |
| 242 | /// Represents an object that may contain properties (ex. `{}`, `{ "prop": 4 }`). |
| 243 | #[derive(Debug, PartialEq, Clone)] |
no outgoing calls
no test coverage detected
searching dependent graphs…