View Source Surface.AST.Error (Surface v0.12.0)
An AST node representing an error. This will be rendered as an html element.
Properties
* `:message` - the error message
* `:meta` - compilation meta data
* `:attributes` - the specified attributes
* `:directives` - directives associated with this error node
Summary
Types
@type t() :: %Surface.AST.Error{ attributes: [Surface.AST.Attribute.t()], directives: [Surface.AST.Directive.t()], message: binary(), meta: Surface.AST.Meta.t() }