| 242 | /// Represents an object that may contain properties (ex. `{}`, `{ "prop": 4 }`). |
| 243 | #[derive(Debug, PartialEq, Clone)] |
| 244 | pub struct Object<'a> { |
| 245 | pub range: Range, |
| 246 | pub properties: Vec<ObjectProp<'a>>, |
| 247 | } |
| 248 | |
| 249 | macro_rules! generate_take { |
| 250 | ($self:ident, $name:ident, $value_type:ident) => { |
no outgoing calls
searching dependent graphs…