mercurial/dirstate.py
changeset 50129 3c6546b149ed
parent 50128 2f60cd6442fd
child 50132 3dd7e54ff7f1
equal deleted inserted replaced
50128:2f60cd6442fd 50129:3c6546b149ed
   314         return self._change_type == CHANGE_TYPE_FILES
   314         return self._change_type == CHANGE_TYPE_FILES
   315 
   315 
   316     @propertycache
   316     @propertycache
   317     def _map(self):
   317     def _map(self):
   318         """Return the dirstate contents (see documentation for dirstatemap)."""
   318         """Return the dirstate contents (see documentation for dirstatemap)."""
   319         self._map = self._mapcls(
   319         return self._mapcls(
   320             self._ui,
   320             self._ui,
   321             self._opener,
   321             self._opener,
   322             self._root,
   322             self._root,
   323             self._nodeconstants,
   323             self._nodeconstants,
   324             self._use_dirstate_v2,
   324             self._use_dirstate_v2,
   325         )
   325         )
   326         return self._map
       
   327 
   326 
   328     @property
   327     @property
   329     def _sparsematcher(self):
   328     def _sparsematcher(self):
   330         """The matcher for the sparse checkout.
   329         """The matcher for the sparse checkout.
   331 
   330