flow
flowTrace a value or object's origin through a program run by following captured arguments, locals, and returns. Use literal equality or object identity to find where it came from.
Instructions
provenance of a value or an object. --value follows a literal by equality through captured arguments, locals and returns; --object follows one identity from the event that captured it; one of the two is required, and each refuses by name what the recording did not capture.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| run | No | run id, a unique prefix of one, or `last` (the newest trace) | last |
| after | No | event ref to resume from | |
| limit | No | most rows to print | |
| value | No | literal matched by equality; quote to force a string, as in "'1800'" | |
| object | No | e<id>:<name>, where <name> was captured at that event (a CALL's argument, a LINE's local); or <qualname>:<name>, which resolves to that function's first CALL and so names one of its ARGUMENTS -- plus <qualname>:return for what that activation returned |