fromFile static method

Dwarf? fromFile(
  1. String path
)

Attempts to load the DWARF debugging information from the file at path.

Returns a Dwarf object if the load succeeds, otherwise returns null.

Implementation

static Dwarf? fromFile(String path) =>
    Dwarf.fromReader(Reader.fromFile(MachO.handleDSYM(path)));