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

An AST node representing a container of other nodes. This does not
have content itself, just contains children which have content, and
directives that operate on the entirety of the children (i.e. for, if, debug)

## Properties
    * `:children` - children AST nodes
    * `:attributes` - the specified attributes
    * `:directives` - directives associated with this container
    * `:meta` - compile meta
    * `:debug` - keyword list indicating when debug information should be printed during compilation

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

```elixir
@type t() :: %Surface.AST.Container{
  attributes: [Surface.AST.Attribute.t()],
  children: [Surface.AST.t()],
  debug: [atom()],
  directives: [Surface.AST.Directive.t()],
  meta: Surface.AST.Meta.t()
}
```

---

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