| 97 | bool IsFloat() const { return type_ == FLOAT; } |
| 98 | bool IsInt() const { return type_ == INT; } |
| 99 | bool IsJSON() const { return type_ == JSON; } |
| 100 | friend std::ostream &operator<<(std::ostream &os, const ScriptParam &data); |
| 101 | bool operator==(const ScriptParam &) const; |
| 102 | bool operator!=(const ScriptParam &) const; |
no outgoing calls
no test coverage detected