| 113 | bool IsInt() const { return m_Type == VarTypes::Integer; } |
| 114 | bool IsUnsignedInt() const { return m_Type == VarTypes::UnsignedInteger; } |
| 115 | bool IsFloat() const { return m_Type == VarTypes::Float; } |
| 116 | bool IsString() const { return m_Type == VarTypes::String; } |
| 117 | |
| 118 | /// Value getters |
no outgoing calls
no test coverage detected