# `Excessibility.TelemetryCapture.Analyzers.CodePointer`
[🔗](https://github.com/lessthanseventy/excessibility/blob/v0.18.1/lib/telemetry_capture/analyzers/code_pointer.ex#L1)

Maps timeline events to likely source code locations.

Helps LLMs and developers locate relevant callbacks.
Uses event type and view_module to suggest where to look.

Not enabled by default - run with `--analyze=code_pointer`.

## Output

    %{
      findings: [],
      stats: %{
        pointers: [
          %{
            event: "handle_event:save_form",
            module: MyApp.FormLive,
            likely_location: "def handle_event("save_form", params, socket) in MyApp.FormLive"
          }
        ]
      }
    }

# `analyze`

# `default_enabled?`

# `name`

---

*Consult [api-reference.md](api-reference.md) for complete listing*
