MCPcopy Create free account
hub / github.com/SakuraEngine/SakuraEngine / StartObject

Method StartObject

modules/engine/runtime/serde/json/writer.cpp:79–84  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

77 return String(view.raw().data(), view.size());
78}
79bool skr_json_writer_t::StartObject()
80{
81 _Prefix(SKR_JSONTYPE_OBJECT);
82 _levelStack.emplace_back();
83 return _WriteStartObject();
84}
85bool skr_json_writer_t::EndObject()
86{
87 SKR_ASSERT(_levelStack.size() > 0); // not inside an Object

Callers 7

AddCookTaskMethod · 0.80
scene_asset.cppFile · 0.80
SerializeTextMethod · 0.80
WriteMethod · 0.80
WriteMethod · 0.80
WriteMethod · 0.80
json.cppFile · 0.80

Calls 1

emplace_backMethod · 0.45

Tested by

no test coverage detected