##// END OF EJS Templates
basefilectx: move phase from filectx
Sean Farley -
r19598:e8ef893a default
parent child Browse files
Show More
@@ -505,6 +505,8 b' class basefilectx(object):'
505 return self._changectx.branch()
505 return self._changectx.branch()
506 def extra(self):
506 def extra(self):
507 return self._changectx.extra()
507 return self._changectx.extra()
508 def phase(self):
509 return self._changectx.phase()
508
510
509 class filectx(basefilectx):
511 class filectx(basefilectx):
510 """A filecontext object makes access to data related to a particular
512 """A filecontext object makes access to data related to a particular
@@ -561,8 +563,6 b' class filectx(basefilectx):'
561 return filectx(self._repo, self._path, fileid=fileid,
563 return filectx(self._repo, self._path, fileid=fileid,
562 filelog=self._filelog)
564 filelog=self._filelog)
563
565
564 def phase(self):
565 return self._changectx.phase()
566 def phasestr(self):
566 def phasestr(self):
567 return self._changectx.phasestr()
567 return self._changectx.phasestr()
568 def manifest(self):
568 def manifest(self):
General Comments 0
You need to be logged in to leave comments. Login now