callInfoForPCOffset abstract method

Iterable<CallInfo>? callInfoForPCOffset(
  1. PCOffset pcOffset, {
  2. bool includeInternalFrames = false,
})

The call information for the given PCOffset. There may be multiple CallInfo objects returned for a single PCOffset when code has been inlined.

Returns null if the given address is invalid for the DWARF information or if the PCOffset contains no architecture information and there is debugging information recorded for multiple architectures.

If includeInternalFrames is false, then only information corresponding to user or library code is returned.

Implementation

Iterable<CallInfo>? callInfoForPCOffset(PCOffset pcOffset,
    {bool includeInternalFrames = false});