Type getters
| 110 | |
| 111 | /// Type getters |
| 112 | bool IsBool() const { return m_Type == VarTypes::Boolean; } |
| 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; } |
no outgoing calls
no test coverage detected