MCPcopy Create free account
hub / github.com/acl-dev/acl / get_obj

Method get_obj

lib_acl_cpp/src/stdlib/json.cpp:50–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

48}
49
50json_node* json_node::get_obj() const
51{
52 if (obj_ != NULL) {
53 return obj_;
54 }
55 if (node_me_->tag_node == NULL) {
56 return NULL;
57 }
58
59 const_cast<json_node*>(this)->obj_ =
60 dbuf_->create<json_node>(node_me_->tag_node, json_);
61 return obj_;
62}
63
64const char* json_node::get_string() const
65{

Callers 13

mainFunction · 0.80
mainFunction · 0.80
testFunction · 0.80
testFunction · 0.80
mainFunction · 0.80
gsonFunction · 0.80
gsonFunction · 0.80
gsonFunction · 0.80
gsonFunction · 0.80
doJsonMethod · 0.80
gsonFunction · 0.80
gsonFunction · 0.80

Calls

no outgoing calls

Tested by 2

gsonFunction · 0.64
gsonFunction · 0.64