Show More
@@ -622,6 +622,9 b' class changectx(basectx):' | |||||
622 | def hidden(self): |
|
622 | def hidden(self): | |
623 | return self._rev in repoview.filterrevs(self._repo, 'visible') |
|
623 | return self._rev in repoview.filterrevs(self._repo, 'visible') | |
624 |
|
624 | |||
|
625 | def isinmemory(self): | |||
|
626 | return False | |||
|
627 | ||||
625 | def children(self): |
|
628 | def children(self): | |
626 | """return contexts for each child changeset""" |
|
629 | """return contexts for each child changeset""" | |
627 | c = self._repo.changelog.children(self._node) |
|
630 | c = self._repo.changelog.children(self._node) | |
@@ -1401,6 +1404,9 b' class committablectx(basectx):' | |||||
1401 | def extra(self): |
|
1404 | def extra(self): | |
1402 | return self._extra |
|
1405 | return self._extra | |
1403 |
|
1406 | |||
|
1407 | def isinmemory(self): | |||
|
1408 | return False | |||
|
1409 | ||||
1404 | def tags(self): |
|
1410 | def tags(self): | |
1405 | return [] |
|
1411 | return [] | |
1406 |
|
1412 | |||
@@ -1978,6 +1984,9 b' class overlayworkingctx(workingctx):' | |||||
1978 | else: |
|
1984 | else: | |
1979 | return self._wrappedctx[path].data() |
|
1985 | return self._wrappedctx[path].data() | |
1980 |
|
1986 | |||
|
1987 | def isinmemory(self): | |||
|
1988 | return True | |||
|
1989 | ||||
1981 | def filedate(self, path): |
|
1990 | def filedate(self, path): | |
1982 | if self.isdirty(path): |
|
1991 | if self.isdirty(path): | |
1983 | return self._cache[path]['date'] |
|
1992 | return self._cache[path]['date'] |
General Comments 0
You need to be logged in to leave comments.
Login now