> 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/modifiers/modifiers.with_properties.md).

# Modifiers.with\_properties()

`with_properties(expr) ->`` ``Modifiers`

E.g: `expr = FunctionFilters.HAS_ARGS & ~FunctionFilters.HAS_ERRORS` `with_properties(expr)` will return modifiers that have arguments and don't return errors.

### Query Example

```python
from glider import *

def query():
    return (
        Modifiers()
        .with_properties(FunctionFilters.HAS_GLOBAL_VARIABLES_READ | FunctionFilters.HAS_ERRORS)
        .exec(10)
    )

```

### Example Output

<figure><img src="/files/RGQxcp2pghanusI73fHg" alt=""><figcaption></figcaption></figure>
