| 134 | } |
| 135 | |
| 136 | sonic_force_inline bool Uint(uint64_t val) noexcept { |
| 137 | if (cur_node_) { |
| 138 | cur_node_->SetUint64(val); |
| 139 | return true; |
| 140 | } |
| 141 | SONIC_ADD_NODE(); |
| 142 | new (&st_[np_ - 1]) NodeType(val); |
| 143 | return true; |
| 144 | } |
| 145 | |
| 146 | sonic_force_inline bool Int(int64_t val) noexcept { |
| 147 | if (cur_node_) { |
nothing calls this directly
no outgoing calls
no test coverage detected