# Point

`import { Point } from "destack:debug";`

Source-level projection for one execution point.

```ds title="Point"
export struct Point {
    execution: ExecutionPoint;
    location: SourceLocation;
    scope: ScopeId;
    inlineFrame: InlineFrameId;
}
```

[language/library/src/debug/debug.ds:29:38](https://github.com/destack-sh/destack/blob/main/language/library/src/debug/debug.ds#L29-L38)

## Members

### `execution: ExecutionPoint`

Execution coordinate.

### `location: SourceLocation`

Source location when debug metadata is available.

### `scope: ScopeId`

Active scope when debug metadata is available.

### `inlineFrame: InlineFrameId`

Active inline frame when this point is inlined.
