We should add a shortcut `dtype` for `RefVariable` to access varirable's data type. ```python @property def dtype(self): """The `DType` of this variable.""" return self._variable.dtype ```