| 111 | inline bool IsObject() const { return (GetType() == T_OBJECT); } |
| 112 | inline bool IsArray() const { return (GetType() == T_ARRAY); } |
| 113 | inline bool IsValue() const { return (GetType() == T_VALUE); } |
| 114 | |
| 115 | Object &AsObject(); |
| 116 | const Object &AsObject() const; |