> 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()

## 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="/files/JkL677fXZKufqzRUtqHG" alt=""><figcaption></figcaption></figure>
