> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/callable/callable.break_instructions.md).

# Callable.break\_instructions()

Returns break instructions of the function/modifier.

`break_instructions() →` [`Instructions`](/glider-ide/api/instructions.md)

## Example

```python
from glider import *


def query():
  functions = Functions().with_name("removeLiquidityPool").exec(1, 1)

  results = []
  for function in functions:
    # For each function, return each break instruction
    for instruction in function.break_instructions().exec():
      results.append(instruction)

  return results
```

## Example output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FgyJpvYxWk1Ta1YmZNT34%2FScreenshot%202025-08-21%20at%2011.22.13%E2%80%AFAM.png?alt=media&amp;token=c452ff49-15f9-45e7-bdff-b5d51f29998e" alt=""><figcaption></figcaption></figure>
