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

An AST node representing an attribute expression (i.e. a dynamic value for an attribute, directive, or property)

## Properties
    * `:original` - the original text, useful for debugging and error messages
    * `:value` - a quoted expression
    * `:constant?` - true if the expression can be evaluated at compile time
    * `:meta` - compilation meta data

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

```elixir
@type t() :: %Surface.AST.AttributeExpr{
  constant?: boolean(),
  meta: Surface.AST.Meta.t(),
  original: binary(),
  value: any()
}
```

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

---

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