(self, entry)
| 1974 | return self._chained_entry |
| 1975 | |
| 1976 | def set_chained_function_entry(self, entry): |
| 1977 | if self._chained_entry != None: |
| 1978 | raise PEFormatError("Chained function entry cannot be changed") |
| 1979 | self._chained_entry = entry |
| 1980 | |
| 1981 | |
| 1982 | class PrologEpilogOp: |
no test coverage detected