View Source Surface.AST.SubBlock (surface v0.11.5)
An AST node representing a generic sub-block.
Properties
* `:name` - name of the block
* `:expression` - the expression passed to block
* `:children` - children AST nodes
* `:meta` - compile meta
* `:debug` - keyword list indicating when debug information should be printed during compilation
Summary
Types
@type t() :: %Surface.AST.SubBlock{ children: [Surface.AST.t()], debug: [atom()], expression: Surface.AST.AttributeExpr.t(), meta: Surface.AST.Meta.t(), name: :default | binary() }