# `Surface.AST.For`
[🔗](https://github.com/surface-ui/surface/blob/v0.12.3/lib/surface/ast.ex#L180)

An AST node representing a for comprehension.

## Properties
    * `:generator` - a quoted expression
    * `:children` - the children to collect over the generator
    * `:meta` - compilation meta data
    * `:debug` - keyword list indicating when debug information should be printed during compilation
    * `:directives` - directives associated with this node

# `t`
[🔗](https://github.com/surface-ui/surface/blob/v0.12.3/lib/surface/ast.ex#L193)

```elixir
@type t() :: %Surface.AST.For{
  children: [Surface.AST.t()],
  debug: [atom()],
  directives: [Surface.AST.Directive.t()],
  else: term(),
  generator: any(),
  meta: Surface.AST.Meta.t()
}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
