Surface.AST.For (surface v0.3.2) View Source

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

Link to this section Summary

Link to this section Types

Specs

t() :: %Surface.AST.For{
  children: [Surface.AST.t()],
  debug: [atom()],
  generator: any(),
  meta: Surface.AST.Meta.t()
}