(self)
| 1662 | (self.heap.reader.FormatIntPtr(self.address), inferred_name) |
| 1663 | |
| 1664 | def _GetSource(self): |
| 1665 | source = "?source?" |
| 1666 | start = self.shared.start_position |
| 1667 | end = self.shared.end_position |
| 1668 | if not self.shared.script.Is(Script): return source |
| 1669 | script_source = self.shared.script.source |
| 1670 | if not script_source.Is(String): return source |
| 1671 | if start and end: |
| 1672 | source = script_source.GetChars()[start:end] |
| 1673 | return source |
| 1674 | |
| 1675 | |
| 1676 | class SharedFunctionInfo(HeapObject): |