> 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/point/varvalue/varvalue.is_depending_on_any_argument.md).

# VarValue.is\_depending\_on\_any\_argument()

Returns whether the object depends on any of its function's arguments.

## Query Example

```python
from glider import *


def query():
  instructions = (
    Functions()
    .with_name("insertAccountProfile")
    .exec(1)
    .instructions()
    .exec()
  )

  for instruction in instructions:
    components = instruction.get_components()
    for component in components:
      if isinstance(component, VarValue):
        depend_on_argument = component.is_depending_on_any_argument()
        if depend_on_argument:
          print(component.expression)
          print(instruction.source_code())
        
  return instructions
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FPkKbwwIpwPKQpPCga7Op%2FScreenshot%202025-09-10%20at%202.38.32%E2%80%AFPM.png?alt=media&amp;token=6a952757-1863-4de3-9f30-aa50623718d7" alt=""><figcaption></figcaption></figure>
