* @brief Check this node is a const string. "Const" means the string's * buffer is not allocated by any allocator. * @return true if its string is const. */
| 297 | * @return true if its string is const. |
| 298 | */ |
| 299 | sonic_force_inline bool IsStringConst() const noexcept { |
| 300 | return GetType() == kStringConst; |
| 301 | } |
| 302 | /** |
| 303 | * @brief Check the node is an container(object or array). |
| 304 | * @return true if it is an object or array. |