MCPcopy Create free account
hub / github.com/dprint/jsonc-parser / Object

Class Object

src/ast.rs:244–247  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers 13

parse_objectFunction · 0.85
parse_valueFunction · 0.85
fromMethod · 0.85
from_containerMethod · 0.85
object_value_or_setMethod · 0.85
insert_or_appendMethod · 0.85
to_serde_valueMethod · 0.85
build_objectMethod · 0.85

Calls

no outgoing calls

Used in the wild real call sites across dependent graphs

searching dependent graphs…